TScrollEvent is the type of an OnScroll event handler.
TScrollEvent = procedure (Sender: TObject; ScrollCode: TScrollCode; var ScrollPos: Integer) of object;
(Sender: TObject; ScrollCode: TScrollCode; var ScrollPos: Integer) ( TScrollEvent)();
TScrollEvent defines the type of method procedure that you must define in order to implement the OnScroll event of a visual component such as TScrollBar.
The OnScroll event occurs when the user scrolls a scroll bar with the mouse or keyboard.
Sender is a reference to the component invoking the OnScroll event.
ScrollCode defines the user scroll action that was performed.
ScrollPos provides the new scroll position.
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|