« INPUT type=button 元素 | input type=button 对象Javascript实现三级联动选单 »

AtEndOfLine 属性

AtEndOfLine 属性
TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。

object.AtEndOfLine

object 应为 TextStream 对象的名称。

说明
AtEndOfLine 属性仅应用于以读方式打开的 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
原创文章如转载,请注明:转载自悠悠博客 [ http://www.ajaxstu.com/ ]

相关文章:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。