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