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 |
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 |
Element
Returns the actual HTML element on which the required custom styling can be applied.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
Event
Declaration
public TValue Event { get; set; }
Property Value
Type | Description |
---|---|
TValue |
Name
Specifies the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |