Class ColumnReorderedEventArgs
Encapsulates data associated with the ColumnReordered event.
Inheritance
System.Object
ColumnReorderedEventArgs
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ColumnReorderedEventArgs : EventArgs
Constructors
ColumnReorderedEventArgs()
Declaration
public ColumnReorderedEventArgs()
Properties
Column
Gets the column that has been reordered.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
NewIndex
Gets the new index of the column that has been reordered.
Declaration
public int NewIndex { get; }
Property Value
System.Int32
|
OldIndex
Gets the initial index of the column that has been reordered.
Declaration
public int OldIndex { get; }
Property Value
System.Int32
|
OldIsFrozen
Gets the initial IsFrozen value of the column that has been reordered.
Declaration
public bool OldIsFrozen { get; }
Property Value
System.Boolean
|