Class QueryCellInfoEventArgs<TValue>
Provides information about the QueryCellInfo event.
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class QueryCellInfoEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of data source for the Kanban board. |
Remarks
This class outlines the data and actions related to the rendering of Kanban cell information.
Constructors
QueryCellInfoEventArgs()
Declaration
public QueryCellInfoEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the rendering action can be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Use this property to control the display of certain cells based on conditions.
Data
Gets or sets the data associated with the cell being rendered.
Declaration
public List<SwimlaneSettingsModel> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<SwimlaneSettingsModel> | A list of SwimlaneSettingsModel representing the data elements being displayed. |
Remarks
The data aids in rendering the UI elements corresponding to specific swimlane configurations.
RequestType
Gets or sets the request type of the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string indicating the nature of the action being performed. |
Remarks
This property identifies the type of operation being evaluated or carried out.