Class ColumnReorderedEventArgs
Provides information about the ColumnReordered event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnReorderedEventArgs : GridEventBaseArgs
Constructors
ColumnReorderedEventArgs()
Declaration
public ColumnReorderedEventArgs()
Properties
ReorderingColumns
Gets the list of the column associated with column reordering.
Declaration
public List<GridColumn> ReorderingColumns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | The list of GridColumn associated with column reordering. |
ToColumn
Gets the destination column for placing the reordered columns during the column reorder action in the grid.
Declaration
public GridColumn ToColumn { get; }
Property Value
Type | Description |
---|---|
GridColumn | The destination GridColumn where the reordered columns will be positioned in the grid after the reorder action. |
Remarks
When dragging a column towards the left direction, the reordered columns will be placed before the destination column. Conversely, when dragging a column towards the right direction, the reordered columns will be placed after the destination column.