'Declaration
Public Event TableRangeChanging As TableRangeChangingEventHandler
'Usage
Dim instance As TableView Dim handler As TableRangeChangingEventHandler AddHandler instance.TableRangeChanging, handler
public event TableRangeChangingEventHandler TableRangeChanging
Event Data
The event handler receives an argument of type TableRangeChangingEventArgs containing data related to this event. The following TableRangeChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column. |
ColumnCount | Gets the column count. |
Row | Gets the row. |
RowCount | Gets the row count. |
Type | Gets table changed type. |
See Also