[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Event triggered after the cursor has changed position.
Source position: db.pas line 1706
public property TDataSet.AfterScroll : TDataSetNotifyEvent |
AfterScroll is triggered after the cursor has changed position. This can happen with one of the navigation methods: TDataset.Next, TDataset.Prior, TDataset.First, TDataset.Last, but also with two of the editing operations:TDataset.Insert and TDataset.Delete and after the dataset was opened. It is suitable for displaying status information or showing a value that needs to be calculated for each record.
|
Event triggered after the cursor has changed position. |
|
|
Go to the next record in the dataset. |
|
|
Go to the previous record |
|
|
Position the dataset on the first record. |
|
|
Navigate forward to the last record |
|
|
Insert a new record at the current position. |
|
|
Delete the current record. |
|
|
Activate the dataset: Fetch data into memory. |