Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript TextStream Object AtEndOfLine Property

Returns True if the file pointer is positioned immediately before the end-of-line marker in a TextStream file, False if it is not. Read-only.

Syntax: JScript TextStream Object AtEndOfLine Property

object.AtEndOfLine

Arguments: JScript TextStream Object AtEndOfLine Property

object

The name of a TextStream object.

Remarks: JScript TextStream Object AtEndOfLine Property

The AtEndOfLine property applies only to TextStream files that are open for reading; otherwise, an error occurs.

The following code illustrates the use of the AtEndOfLine property:

function GetALine(filespec)

{

var fs, a, s, ForReading;

ForReading = 1, s = "";

fs = new ActiveXObject("Scripting.FileSystemObject");

a = fs.OpenTextFile(filespec, ForReading, false);

while (!a.AtEndOfLine)

{

s += a.Read(1);

}

a.Close( );

return s;

}

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.