Class
TaskBoardColumnCreateEventArgs<TColumn>

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 EventArgs.Empty

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.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

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