Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 708 Bytes

File metadata and controls

41 lines (32 loc) · 708 Bytes

EOLN

Description

Function EOLN returns TRUE if the file pointer of an open text file has reached a carriage return within the file. Parameter fileName specifies a text file which is open for reading or writing.

FUNCTION EOLN(fileName : STRING): BOOLEAN;
def vs.EOLN(fileName):
    return BOOLEAN

Parameters

Name Type Description
fileName STRING Name of file.

Examples

VectorScript

BEGIN
  Open('MyData');
  WHILE NOT EOLN('MyData') DO BEGIN
    Read(a,b,c,d);
  END;

  Close('MyData');
END;

Python

Version

Availability: from All Versions

Category