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 = retstringEnd Function
最后
以上就是潇洒芹菜最近收集整理的关于VBS教程:属性-AtEndOfLine 属性的全部内容,更多相关VBS教程:属性-AtEndOfLine内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复