Returns True if the current record has been deleted; False, otherwise.
Read-only property
variable = object.IsDeleted |
Boolean
When you delete a record from a shapefile or DBF derived RecordSet, it is not actually removed from the RecordSet, but marked for deletion. That is, the deleted flag is set in the RecordSet. When moving through the RecordSet, be sure to check if the IsDeleted property returns True for each record and skip over those records for which it does. Calling the Pack method removes all records that are marked from deletion; however, Pack is a resource intensive operation and should be tested with your real world data to judge the performance on a particular mobile device.