[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Compare two bookmarks
Source position: db.pas line 1626
public function TDataSet.CompareBookmarks( |
Bookmark1: TBookMark; |
Bookmark2: TBookMark |
):LongInt; virtual; |
Bookmark1 |
|
First bookmark |
Bookmark2 |
|
Second bookmark. |
result of the compare operation
CompareBookmarks can be used to compare the relative positions of 2 bookmarks. It returns a negative value if Bookmark1 is located before Bookmark2, zero if they refer to the same record, and a positive value if the second bookmark appears before the first bookmark. This function mustbe overridden by descendent classes of TDataset. The implementation in TDataset always returns zero.
No checks are performed on the validity of the bookmarks.
|
Test whether ABookMark is a valid bookmark. |
|
|
Get a bookmark pointer (deprecated) |
|
TDataset.SetBookmark |