Encapsulates data associated with the ColumnReorderCompleting event.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class ColumnReorderCompletingEventArgs : EventArgs
Inheritance: objectEventArgsColumnReorderCompletingEventArgs
Inherited Members
Constructors
public ColumnReorderCompletingEventArgs()
Properties
Gets or sets a value that indicates whether the reordering operation is canceled.
public bool Cancel { get; set; }
Gets the column that is being reordered.
public DataGridColumn Column { get; }
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.
public bool IsDropAllowed { get; }
Gets the new potential index of the column that is being reordered.
public int NewIndex { get; }
Gets the new potential IsFrozen value of the column that is being reordered.
public bool NewIsFrozen { get; }