'Declaration
Public Event Change As ChangeEventHandler
'Usage
Dim instance As FpSpread Dim handler As ChangeEventHandler AddHandler instance.Change, handler
public event ChangeEventHandler Change
Event Data
The event handler receives an argument of type ChangeEventArgs containing data related to this event. The following ChangeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column index of the cell that is changed. |
Row | Gets the row index of the cell that is changed. |
View | Gets the view that contains the cell that is changed. |
See Also