New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class TaskBoardColumnCreateEventArgs<TColumn> : EventArgs

Inheritance: objectEventArgsTaskBoardColumnCreateEventArgs<TColumn>

Inherited Members EventArgs.Empty

Constructors

C#
public TaskBoardColumnCreateEventArgs()
C#
public TaskBoardColumnCreateEventArgs(TColumn item)
Parameters:itemTColumn

Properties

Set to true to abort the create operation and prevent the column from being committed.

C#
public bool IsCancelled { get; set; }

Item

TColumn

The new column data item to be created in the ColumnData collection. Add this to your data source to persist the new column.

C#
public TColumn Item { get; set; }