| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Event triggered before the cursor changes position.
Source position: db.pas line 1760
|  public property TDataSet.BeforeScroll : TDataSetNotifyEvent | 
BeforeScroll is triggered before the cursor changes 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. Raising an exception in this event handler aborts the operation in progress.
| 
 | 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. |