Class CardClickEventArgs<TValue>
Provides information about a Card Click or Double Click event.
Inheritance
System.Object
CardClickEventArgs<TValue>
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class CardClickEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of data source for the Kanban board. |
Remarks
This class contains details about card interactions on the Kanban board.
Constructors
CardClickEventArgs()
Declaration
public CardClickEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the card click action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to prevent default actions after a card click.
Data
Gets or sets the data associated with the clicked or double-clicked card.
Declaration
public TValue Data { get; set; }
Property Value
Type | Description |
---|---|
TValue | An instance of |
Remarks
This property contains the data object linked to the card that was interacted with.