ClassTaskBoardColumnCreateEventArgs<TColumn>
Class
The event arguments for the OnColumnCreate 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 TaskBoardColumnCreateEventArgs<TColumn> : EventArgs
Inheritance: objectEventArgsTaskBoardColumnCreateEventArgs<TColumn>
Inherited Members
Constructors
TaskBoardColumnCreateEventArgs()
Declaration
cs-api-definition
public TaskBoardColumnCreateEventArgs()
TaskBoardColumnCreateEventArgs(TColumn)
Declaration
cs-api-definition
public TaskBoardColumnCreateEventArgs(TColumn item)
Parameters
item
TColumn
Properties
IsCancelled
Set to true to abort the create operation and prevent the column from being committed.
Item
The new column data item to be created in the ColumnData collection. Add this to your data source to persist the new column.
Declaration
cs-api-definition
public TColumn Item { get; set; }
Property Value
TColumn