Line

(PWS4 IIS4 IIS5)
Line — TextStream ファイル内での現在の行番号を返します。値の取得のみ可能です。

構文

object.Line

パラメータ

object
TextStream オブジェクトを指定します。

戻り値

現在の行番号を返します。

説明

ファイルを開いた後、何も書き込んでいない状態での Line プロパティの値は 1 です。

JScript

1
2
3
4
5
6
7
8
9
10
11
12
13
function GetLine()
{
   var fso, f, r
   var ForReading = 1, ForWriting = 2;
   fso = new ActiveXObject("Scripting.FileSystemObject")
   f = fso.OpenTextFile("c:\\textfile.txt", ForWriting, true)
   f.WriteLine("Hello world!");
   f.WriteLine("JScript is fun");
   f.Close();
   f = fso.OpenTextFile("c:\\textfile.txt", ForReading);
   r =   f.ReadAll();
   return(f.Line);
}

VBScript

1
2
3
4
5
6
7
8
9
10
Function GetLine
   Const ForReading = 1, ForWriting = 2
   Dim fso, f, ra
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
   f.Write "Hello world!" & vbCrLf & "VB Script is fun!" & vbCrLf
   Set f = fso.OpenTextFile("c:\testfile.txt", ForReading)
   ra =   f.ReadAll
   GetLine = f.Line
End Function