Eof
Indicates whether the last record has been reached.
Return values
- true. Indicates that the last record has been reached or there are no records.
- false. Indicates that the last record hasn't been reached yet.
Examples
(eof).
while (!record.eof)
{
record.NextRecord();
}
Retrieves the next record until the last record is reached.