AtEndOfLine 属性 |
|
object 应为 TextStream 对象的名称。
下列代码举例说明如何使用 AtEndOfLine 属性:
Function ReadEntireFile(filespec) Const ForReading = 1 Dim fso, theFile, retstring Set fso = CreateObject("Scripting.FileSystemObject") Set theFile = fso.OpenTextFile(filespec, ForReading, False) Do While theFile.AtEndOfLine <> True retstring = theFile.Read(1) ... Loop theFile.Close ReadEntireFile = retstring End Function