Class ColumnReorderStartingEventArgs
Encapsulates data associated with the ColumnReorderStarting event.
Inheritance
System.Object
ColumnReorderStartingEventArgs
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ColumnReorderStartingEventArgs : EventArgs
Constructors
ColumnReorderStartingEventArgs()
Declaration
public ColumnReorderStartingEventArgs()
Properties
Cancel
Gets or sets a value that indicates whether the reordering operation is canceled.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
Column
Gets the column that will be reordered.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
Index
Gets the index of the column that will be reordered.
Declaration
public int Index { get; }
Property Value
System.Int32
|