ClassTaskBoardColumnReorderEventArgs<TColumn>
Class
The event arguments for the OnColumnReorder event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TColumn
The type of the column data items in ColumnData.
Syntax:
cs-api-definition
public class TaskBoardColumnReorderEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnReorderEventArgs<TColumn>
Inherited Members
Constructors
TaskBoardColumnReorderEventArgs()
Declaration
cs-api-definition
public TaskBoardColumnReorderEventArgs()
Properties
IsCancelled
Set to true to prevent the reorder from completing and keep the column in its original position.
Item
The column data item that was dragged to a new position. Update its ColumnIndexField in your data source using NewIndex.
Declaration
cs-api-definition
public TColumn Item { get; set; }
Property Value
TColumn
NewIndex
The zero-based column position after the drag.