<完全なテキストストリームオブジェクトリファレンス
WriteBlankLines方法は、テキストストリームファイルに新しい行の指定された数の文字を書き込みます。
構文
TextStreamObject.WriteBlankLines(numlines)
パラメーター | 説明 |
---|---|
numlines | 必須。 改行文字の数は、ファイルに書き込みます |
例
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.WriteBlankLines(2)
f.WriteLine("How are you today?")
f.close
set f=nothing
set fs=nothing
%>
The file test.txt will look like this after executing the code above:
Hello World!
How are you today?
<完全なテキストストリームオブジェクトリファレンス