Xbasic
BOF Function
Syntax
L BOF([C tablename])
Arguments
- tablename
Character
Description
Returns TRUE if the record pointer is at the beginning of the file.
Discussion
BOF() returns .T. (TRUE) if the record pointer is at the first record of the current table; otherwise, it returns .F. (FALSE).
Example
bof() -> TRUE if the record pointer is at the first record of the current table. bof() -> FALSE if the record pointer is not at the first record of the current table.
See Also