Class ActionCompleteEventArgs<TItem>
Provides information about an OnActionComplete event being raised.
Inheritance
System.Object
ActionCompleteEventArgs<TItem>
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs<TItem> : Object
Type Parameters
Name | Description |
---|---|
TItem | TItem value of the dropdown list component. |
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 |
---|---|
System.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 |
---|---|
System.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 |
---|---|
System.Collections.Generic.IEnumerable<TItem> | A collection of objects representing the selected item values from the data source. |