Microsoft® JScript AtEndOfLine Property |
Language Reference Version 2 |
Read-only property that returns true if the file pointer is positioned immediately before the end-of-line marker in a TextStream file; false if it is not.
object.AtEndOfLineThe object is always the name of a TextStream object.
The AtEndOfLine property applies only to TextStream files that are open for reading; otherwise, an error occurs.The following code illustrates the use of the AtEndOfLine property:
var fs, a, retstring; fs = new ActiveXObject("Scripting.FileSystemObject"); a = fs.OpenTextFile("c:\testfile.txt", ForReading, False); while (a.AtEndOfLine != true) { retstring = a.Read(1); ... } a.Close( );
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/inet/iis/jscript/htm/js863.htm, 2KB, , updated: 1997/9/30 04:45, local time: 2024/10/31 18:33,
3.135.192.185:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/inet/iis/jscript/htm/js863.htm"> AtEndOfLine Property</A> |
Did you find what you needed? |