Class
TaskBoardColumnDeleteEventArgs<TColumn>

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

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.

Declaration

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

Property Value

bool

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