Futurebasic/Language/Reference/loc

From Wikibooks, open books for an open world
Jump to navigation Jump to search

LOC[edit | edit source]

Syntax[edit | edit source]

result = LOC(deviceID)

Description[edit | edit source]

This function returns one of two things, depending on the value of deviceID.

  • If deviceID is the file ID number of an open file, the function returns the current location of the file mark as an offset from the beginning of the current record. For example, if LOC(fileID) returns zero, the file mark is located at the beginning of the record. The file mark indicates where in the file the next input or output operation will occur.
  • if deviceID specifies an open serial port (i.e., if its value is _modemPort or _printerPort), then the function indicates the status of the carrier signal. If returns _zTrue if the carrier is detected, or _false if the carrier is not detected.

Note: You can use LOC along with REC to determine the exact location of the file mark within the file.

See Also[edit | edit source]

REC; RECORD; OPEN; LOF; HANDSHAKE; OPEN "C"