ClassTaskBoardCardMoveEventArgs<TItem>
Class
The event arguments for the OnCardMove event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
The type of the card data items in CardData.
Syntax:
cs-api-definition
public class TaskBoardCardMoveEventArgs<TItem> : EventArgs
Inheritance: objectEventArgsTaskBoardCardMoveEventArgs<TItem>
Inherited Members
Constructors
TaskBoardCardMoveEventArgs()
Declaration
cs-api-definition
public TaskBoardCardMoveEventArgs()
Properties
IsCancelled
Set to true to prevent the move from completing and keep the card in its original position.
Item
The moved card's data item. Update its CardStatusField and CardIndexField in your data source using NewStatus and NewIndex.
Declaration
cs-api-definition
public TItem Item { get; set; }
Property Value
TItem
NewIndex
The zero-based card position within its column after the move.
NewStatus
The ColumnStatusField value of the destination column.
OldIndex
The zero-based card position within its column before the move.
OldStatus
The ColumnStatusField value of the source column.