ClassTaskBoardColumnDeleteEventArgs<TColumn>
Class
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:
cs-api-definition
public class TaskBoardColumnDeleteEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnDeleteEventArgs<TColumn>
Inherited Members
Constructors
TaskBoardColumnDeleteEventArgs()
Declaration
cs-api-definition
public TaskBoardColumnDeleteEventArgs()
TaskBoardColumnDeleteEventArgs(TColumn)
Declaration
cs-api-definition
public TaskBoardColumnDeleteEventArgs(TColumn item)
Parameters
item
TColumn
Properties
IsCancelled
Set to true to prevent the column from being deleted.
Item
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.
Declaration
cs-api-definition
public TColumn Item { get; set; }
Property Value
TColumn