[This is preliminary documentation and subject to change]
Writes a specified number of newline characters to a TextStream file.
object.WriteBlankLines(lines)
object
Required. Always the name of a TextStream object.
lines
Required. Number of newline characters you want to write to the file.
The following example illustrates the use of the WriteBlankLines method:
function WriteBlanksDemo()
{
var fso, f, r;
var ForReading = 1, ForWriting = 2;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.OpenTextFile("c:\\testfile.txt", ForWriting, true);
f.Write("Hello world!");
f.WriteBlankLines(2);
f.Write("JScript is fun!");
f.Close();
f = fso.OpenTextFile("c:\\testfile.txt", ForReading);
r = f.ReadAll();
return(r);
}
Write Method | WriteLine MethodApplies To: TextStream Object