[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Go to the previous record
Source position: db.pas line 1659
public procedure TDataSet.Prior; |
Prior moves the cursor to the previous record. It is equivalent to a MoveBy(-1) operation. Calling this method triggers the TDataset.BeforeScroll and TDataset.AfterScroll events. If the dataset is located on the first record, (BOF is true) then no action is performed, and the events are not triggered.
Calling this method on a closed dataset will result in an EDatabaseError exception.
|
Move the cursor position |
|
|
Go to the next record in the dataset. |
|
|
Position the dataset on the first record. |
|
|
Event triggered before the cursor changes position. |
|
|
Event triggered after the cursor has changed position. |
|
|
Is the cursor at the beginning of the data (on the first record) |