'Declaration
Public Event TableRangeChanged As TableRangeChangedEventHandler
'Usage
Dim instance As TableView Dim handler As TableRangeChangedEventHandler AddHandler instance.TableRangeChanged, handler
public event TableRangeChangedEventHandler TableRangeChanged
Event Data
The event handler receives an argument of type TableRangeChangedEventArgs containing data related to this event. The following TableRangeChangedEventArgs 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 the table changed type. |
See Also