当前位置: 首页 > 图文教程 > 脚本技术 > VBScript > VBS教程:属性-AtEndOfLine 属性

VBScript
VBS教程:函数-GetLocale 函数
VBS教程:函数-FormatPercent 函数
VBS教程:函数-FormatNumber 函数
VBS教程:函数-FormatDateTime 函数
VBS教程:函数-FormatCurrency 函数
VBS教程:函数-Filter 函数
VBS教程:函数-Exp 函数
VBS教程:函数-Eval 函数
VBS教程:函数-派生数学函数
VBS教程:函数-Day 函数
VBS教程:函数-DateValue 函数
VBS教程:函数-DateSerial 函数
VBS教程:函数-DatePart 函数
VBS教程:函数-DateDiff 函数
VBS教程:函数-DateAdd 函数
VBS教程:函数-Date 函数
VBS教程:函数-CStr 函数
VBS教程:函数-CSng 函数
VBS教程:函数-CreateObject 函数
VBS教程:函数-Cos 函数

VBScript 中的 VBS教程:属性-AtEndOfLine 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 84 ::
收藏到网摘: n/a

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