Table of Contents

Class DataGridColumnReorderedEventArgs<T>

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a ColumnReordered event that is being raised.

public class DataGridColumnReorderedEventArgs<T>

Type Parameters

T
Inheritance
DataGridColumnReorderedEventArgs<T>
Inherited Members

Constructors

DataGridColumnReorderedEventArgs()

public DataGridColumnReorderedEventArgs()

Properties

Column

Gets the reordered RadzenDataGridColumn.

public RadzenDataGridColumn<T> Column { get; }

Property Value

RadzenDataGridColumn<T>

NewIndex

Gets the new index of the column.

public int NewIndex { get; }

Property Value

int

OldIndex

Gets the old index of the column.

public int OldIndex { get; }

Property Value

int