API:Datasnap.DBClient.TCustomClientDataSet.AfterScroll

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterScroll: TDataSetNotifyEvent read FAfterScroll write FAfterScroll;

C++

__property AfterScroll;

Properties

Type Visibility Source Unit Parent
event protected
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TCustomClientDataSet

Description

Occurs after an application scrolls from one record to another.

Datasnap.DBClient.TCustomClientDataSet.AfterScroll inherits from Data.DB.TDataSet.AfterScroll. All content below this line refers to Data.DB.TDataSet.AfterScroll.

Occurs after an application scrolls from one record to another.

Write an AfterScroll event handler to take specific action immediately after an application scrolls to another record as a result of a call to the First, Last, MoveBy, Next, Prior, FindKey, FindFirst, FindNext, FindLast, FindPrior, and Locate methods. AfterScroll is called after all other events triggered by these methods and any other methods that switch from record to record in the dataset.

AfterScroll is an event handler of type Data.DB.TDataSetNotifyEvent.

See Also