📄 vbs448.htm
字号:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><HTML><HEAD><TITLE>AtEndOfLine Property</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso8859-1">
<META NAME="MS.LOCALE" CONTENT="EN-US">
<META NAME="PRODUCT" CONTENT="Visual Basic Scripting Edition">
<META NAME="TECHNOLOGY" CONTENT="SCRIPTING">
<META NAME="CATEGORY" CONTENT="Language Reference">
<META NAME="Keywords" CONTENT=""><META NAME="Description" CONTENT="AtEndOfLine Property"></HEAD>
<BODY BGCOLOR=FFFFFF LINK=#0033CC>
<!--TOOLBAR_START-->
<!--TOOLBAR_EXEMPT-->
<!--TOOLBAR_END-->
<FONT FACE="Verdana, Arial, Helvetica" SIZE=2>
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR VALIGN=TOP><TD WIDTH=360>
<FONT SIZE=1 COLOR=#660033>Microsoft® Visual Basic® Scripting Edition</FONT><BR>
<FONT SIZE=5 COLOR=#660033><B>AtEndOfLine Property</B></FONT>
</TD>
<TD ALIGN=RIGHT>
<FONT SIZE=2> <A HREF="vbstoc.htm">Language Reference</A> <BR>
<A HREF="vbs16.htm">Version 2</A> <P></FONT>
</TD></TR>
</TABLE>
<FONT SIZE=2><P>
<A HREF="vbs450.htm">See Also</A>
<A HREF="vbs449.htm">Applies to</A></FONT>
<hr noshade size=1>
<H5>Description</H5>
<BLOCKQUOTE>
Read-only property that returns <b>True</b> if the file pointer immediately precedes the end-of-line marker in a <b>TextStream</b> file; <b>False</b> if it is not.
</BLOCKQUOTE>
<H5>Syntax</H5>
<BLOCKQUOTE>
<i>object</i><b>.AtEndOfLine</b><p>
The <i>object</i> is always the name of a <b>TextStream</b> object.
</BLOCKQUOTE>
<H5>Remarks</H5>
<BLOCKQUOTE>
The <b>AtEndOfLine</b> property applies only to <b>TextStream</b> files that are open for reading; otherwise, an error occurs.<p>
The following code illustrates the use of the <b>AtEndOfLine</b> property:
<BLOCKQUOTE>
<PRE><FONT FACE="Courier New" SIZE=3>Dim fs, a, retstring
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile("c:\testfile.txt", ForReading, False)
Do While a<FONT COLOR="#FF0000">.AtEndOfLine</FONT> <> True
retstring = a.Read(1)
...
Loop
a.Close
</FONT></PRE></BLOCKQUOTE>
</BLOCKQUOTE>
<hr noshade size=1>
<p align=center><em><a href="../../common/colegal.htm">© 1997 by Microsoft Corporation. All rights reserved.</a></em></p>
</FONT></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -