Class ColumnReorderCompletingEventArgs
Encapsulates data associated with the ColumnReorderCompleting event.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ColumnReorderCompletingEventArgs : EventArgs
Constructors
ColumnReorderCompletingEventArgs()
Declaration
public ColumnReorderCompletingEventArgs()
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 is being reordered.
Declaration
public DataGridColumn Column { get; }
Property Value
DataGridColumn
|
IsDropAllowed
Gets a value that indicates whether the column was dropped at a valid location. A valid location would mean that the column has changed its index and/or the value of its IsFrozen property and the drop at this location was not forbidden by setting the CanDrop property of the ColumnReorderingEventArgs to false.
Declaration
public bool IsDropAllowed { get; }
Property Value
System.Boolean
|
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
|