New to Telerik UI for .NET MAUIStart a free 30-day trial

Encapsulates data associated with the ColumnReorderStarting event.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class ColumnReorderStartingEventArgs : EventArgs

Inheritance: objectEventArgsColumnReorderStartingEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public ColumnReorderStartingEventArgs()

Properties

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

C#
public bool Cancel { get; set; }

Gets the column that will be reordered.

C#
public DataGridColumn Column { get; }

Gets the index of the column that will be reordered.

C#
public int Index { get; }