 Object Menu
|

| WriteBlankLines |
| Type | Method |
| Return Value Type | None |
| Usage | object.WriteBlankLines(Number of Lines) |
| Description | Writes the specified number of blank lines to a text file. |
| Example | Code: Set fso = CreateObject("Scripting.FileSystemObject") filename="c:\test\test.txt" Set tso = fso.OpenTextFile(filename,1,false,0) tso.WriteBlankLines(2) tso.Close
|
| Notes | The Close method must follow the WriteBlankLines method or the text will not appear in the file. |
|