Class ColumnReorderCompletingEventArgs
Encapsulates data associated with the Column
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.
|
Column
Gets the column that is being reordered.
Declaration
public DataGridColumn Column { get; }
Property Value
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
Can
Declaration
public bool IsDropAllowed { get; }
Property Value
System.
|
NewIndex
Gets the new potential index of the column that is being reordered.
Declaration
public int NewIndex { get; }
Property Value
System.
|
NewIsFrozen
Gets the new potential Is
Declaration
public bool NewIsFrozen { get; }
Property Value
System.
|
OldIndex
Gets the initial index of the column that is being reordered.
Declaration
public int OldIndex { get; }
Property Value
System.
|