Class TableViewColumnReorderingEventArgs
Provides data for the ColumnReordering event.
public class TableViewColumnReorderingEventArgs : CancelEventArgs
- Inheritance
-
objectEventArgsCancelEventArgsTableViewColumnReorderingEventArgs
Constructors
TableViewColumnReorderingEventArgs(TableViewColumn, int)
Initializes a new instance of the TableViewColumnReorderingEventArgs class.
public TableViewColumnReorderingEventArgs(TableViewColumn column, int dropIndex)
Parameters
columnTableViewColumnThe column being reordered.
dropIndexintThe index where the column is being dropped.
Properties
Column
Gets the column being reordered.
public TableViewColumn Column { get; }
Property Value
DropIndex
Gets the index where the column is being dropped.
public int DropIndex { get; }
Property Value
- int