'Declaration
Public Event TopChange As TopChangeEventHandler
'Usage
Dim instance As FpSpread Dim handler As TopChangeEventHandler AddHandler instance.TopChange, handler
public event TopChangeEventHandler TopChange
Event Data
The event handler receives an argument of type TopChangeEventArgs containing data related to this event. The following TopChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewTop | Gets the index of the new top row. |
OldTop | Gets the index of the previous top row. |
RowViewportIndex | Gets the index of the viewport row in which the change occurred. |
See Also