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

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

Constructors

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

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; }