Encapsulates data associated with the ColumnReordering event.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class ColumnReorderingEventArgs : EventArgs
Inheritance: objectEventArgsColumnReorderingEventArgs
Inherited Members
Constructors
C#
public ColumnReorderingEventArgs()
Properties
Gets or sets a value that indicates whether dropping the column at this specific location is allowed.
C#
public bool CanDrop { get; set; }
Gets the column that is being reordered.
C#
public DataGridColumn Column { get; }
Gets the new potential index of the column that is being reordered.
C#
public int NewIndex { get; }
Gets the new potential IsFrozen value of the column that is being reordered.
C#
public bool NewIsFrozen { get; }