The event arguments for the OnColumnDelete event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TColumn
The type of the column data items in ColumnData.
Syntax:
C#
public class TaskBoardColumnDeleteEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnDeleteEventArgs<TColumn>
Inherited Members
Constructors
C#
public TaskBoardColumnDeleteEventArgs()
C#
public TaskBoardColumnDeleteEventArgs(TColumn item)
Properties
Set to true to prevent the column from being deleted.
C#
public bool IsCancelled { get; set; }
Item
TColumn
The column data item that the user requested to delete. Remove the matching entry from your data source along with any cards whose StatusField matches this column.
C#
public TColumn Item { get; set; }