Class
ColumnReorderingEventArgs

Encapsulates data associated with the ColumnReordering event.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class ColumnReorderingEventArgs : EventArgs

Inheritance: objectEventArgsColumnReorderingEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnReorderingEventArgs()

Declaration

cs-api-definition
public ColumnReorderingEventArgs()

Properties

CanDrop

Gets or sets a value that indicates whether dropping the column at this specific location is allowed.

Declaration

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

Property Value

bool

Column

Gets the column that is being reordered.

Declaration

cs-api-definition
public DataGridColumn Column { get; }

Property Value

DataGridColumn

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