Class CardClickEventArgs<TValue>
Provides information about a Card Click/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 | Represents the kanban data source's type. |
Constructors
CardClickEventArgs()
Declaration
public CardClickEventArgs()
Properties
Cancel
Defines the cancel option for the action taking place.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Data
Returns the object of the element which is currently being clicked or double-clicked.
Declaration
public TValue Data { get; set; }
Property Value
Type | Description |
---|---|
TValue | The value of the data associated with the clicked element. |