Class ActionCompleteEventArgs<TItem>
Provides information about an OnActionComplete, OnActionComplete event being raised.
Inheritance
System.Object
ActionCompleteEventArgs<TItem>
Namespace: Syncfusion.Blazor.DropDowns
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
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Count
Gets or sets the total number for records in data source.
Declaration
public double Count { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
EventName
Gets or sets the current event name.
Declaration
public string EventName { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Query
Gets or sets the query object value 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 or sets the selected items values as JSON object 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. |