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

 

VBScript TextStream Object AtEndOfLine Property

Read-only property that returns True if the file pointer immediately precedes the end-of-line marker in a TextStream file; False if it is not.

Syntax: VBScript TextStream Object AtEndOfLine Property

object.AtEndOfLine

Arguments: VBScript TextStream Object AtEndOfLine Property

object

The name of a TextStream object.

Remarks: VBScript 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:

Dim fs, a, retstring

Set fs = CreateObject("Scripting.FileSystemObject")

Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False)

Do While a.AtEndOfLine <> True

retstring = a.Read(1)

...

Loop

a.Close

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