'Declaration
Public Event LeftChange As LeftChangeEventHandler
'Usage
Dim instance As FpSpread Dim handler As LeftChangeEventHandler AddHandler instance.LeftChange, handler
public event LeftChangeEventHandler LeftChange
Event Data
The event handler receives an argument of type LeftChangeEventArgs containing data related to this event. The following LeftChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnViewportIndex | Gets the index of the viewport column in which the change occurred. |
NewLeft | Gets the index of the new left column. |
OldLeft | Gets the index of the previous left column. |
See Also