Class ColumnReorderingEventArgs
Encapsulates data associated with the ColumnReordering event.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ColumnReorderingEventArgs : EventArgs
Constructors
ColumnReorderingEventArgs()
Declaration
public ColumnReorderingEventArgs()
Properties
CanDrop
Gets or sets a value that indicates whether dropping the column at this specific location is allowed.
Declaration
public bool CanDrop { get; set; }
Property Value
System.Boolean
|
Column
Gets the column that is being reordered.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
NewIndex
Gets the new potential index of the column that is being reordered.
Declaration
public int NewIndex { get; }
Property Value
System.Int32
|
NewIsFrozen
Gets the new potential IsFrozen value of the column that is being reordered.
Declaration
public bool NewIsFrozen { get; }
Property Value
System.Boolean
|
OldIndex
Gets the initial index of the column that is being reordered.
Declaration
public int OldIndex { get; }
Property Value
System.Int32
|