Class CardRenderedEventArgs<TValue>
Provides information about a CardRendered event.
Inheritance
System.Object
CardRenderedEventArgs<TValue>
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class CardRenderedEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of data source for the Kanban board. |
Remarks
This class contains information related to the rendering of cards within the Kanban UI.
Constructors
CardRenderedEventArgs()
Declaration
public CardRenderedEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the card rendering action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to stop cards from being rendered in specific conditions.
Data
Gets or sets the data associated with the card currently being rendered.
Declaration
public TValue Data { get; set; }
Property Value
Type | Description |
---|---|
TValue | An instance of |
Remarks
This property contains information about the element being displayed on the UI.