Class
ColumnReorderCompletingEventArgs

Encapsulates data associated with the ColumnReorderCompleting event.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class ColumnReorderCompletingEventArgs : EventArgs

Inheritance: objectEventArgsColumnReorderCompletingEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnReorderCompletingEventArgs()

Declaration

cs-api-definition
public ColumnReorderCompletingEventArgs()

Properties

Cancel

Gets or sets a value that indicates whether the reordering operation is canceled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

Column

Gets the column that is being reordered.

Declaration

cs-api-definition
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

cs-api-definition
public bool IsDropAllowed { get; }

Property Value

bool

NewIndex

Gets the new potential index of the column that is being reordered.

Declaration

cs-api-definition
public int NewIndex { get; }

Property Value

int

NewIsFrozen

Gets the new potential IsFrozen value of the column that is being reordered.

Declaration

cs-api-definition
public bool NewIsFrozen { get; }

Property Value

bool

OldIndex

Gets the initial index of the column that is being reordered.

Declaration

cs-api-definition
public int OldIndex { get; }

Property Value

int