Class
ColumnReorderedEventArgs

Encapsulates data associated with the ColumnReordered event.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class ColumnReorderedEventArgs : EventArgs

Inheritance: objectEventArgsColumnReorderedEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnReorderedEventArgs()

Declaration

cs-api-definition
public ColumnReorderedEventArgs()

Properties

Column

Gets the column that has been reordered.

Declaration

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

Property Value

DataGridColumn

NewIndex

Gets the new index of the column that has been reordered.

Declaration

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

Property Value

int

OldIndex

Gets the initial index of the column that has been reordered.

Declaration

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

Property Value

int

OldIsFrozen

Gets the initial IsFrozen value of the column that has been reordered.

Declaration

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

Property Value

bool