Tests the deleted status of the current record.
public bool IsRecordDeleted();
Remarks
The first byte of every record in a DBF table is reserved for use as a deleted byte. This byte signals whether the record is deleted. This method returns true if the record is marked as deleted.
Note IsRecordDeleted will generally return false for Advantage proprietary ADT tables. Records that are deleted in ADT tables are permanently deleted and can never be retrieved by a client application once they have been written. It is possible to call IsRecordDeleted just after calling DeleteRecord and before the record is written. This function will return true in that case.
See Also