Class ActionCompleteEventArgs<TItem>
Provides data for action completion events in the MultiColumnComboBox component.
Inherited Members
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs<TItem>
Type Parameters
| Name | Description |
|---|---|
| TItem | The type of the data item. |
Constructors
ActionCompleteEventArgs()
Declaration
public ActionCompleteEventArgs()
Properties
Count
Gets or sets the total number of records in the data source.
Declaration
public double Count { get; }
Property Value
| Type | Description |
|---|---|
| double | A double value representing the total number of records. |
EventName
Gets or sets the current event name.
Declaration
public string EventName { get; }
Property Value
| Type | Description |
|---|---|
| string | A string that represents the name of the event. |
Query
Gets or sets the query object used to fetch the data.
Declaration
public Query Query { get; }
Property Value
| Type | Description |
|---|---|
| Query | A Query object that specifies the data to be retrieved from the data source. |
Result
Gets the selected item values as a collection from the data source.
Declaration
public IEnumerable<TItem> Result { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<TItem> | A collection of objects representing the selected item values from the data source. |