'Declaration
Public Event Changed As SheetSpanModelEventHandler
'Usage
Dim instance As BaseSheetSpanModel Dim handler As SheetSpanModelEventHandler AddHandler instance.Changed, handler
public event SheetSpanModelEventHandler Changed
Event Data
The event handler receives an argument of type SheetSpanModelEventArgs containing data related to this event. The following SheetSpanModelEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column index where the event occurred. |
ColumnCount | Gets the number of columns affected. |
Row | Gets the row index where the event occurred. |
RowCount | Gets the number of rows affected. |
Type | Gets the type of event that occurred. |
See Also