Class ActionCompleteEventArgs<TItem>
Inheritance
System.Object
ActionCompleteEventArgs<TItem>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs<TItem> : Object
Type Parameters
Name | Description |
---|---|
TItem |
Constructors
ActionCompleteEventArgs()
Declaration
public ActionCompleteEventArgs()
Properties
Cancel
Illustrates whether the current action needs to be prevented or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Count
Return the total number for records.
Declaration
public double Count { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
EventName
Specify the Event Name
Declaration
public string EventName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Query
Specify the query to complete the data
Declaration
public Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query |
Result
Returns the selected items as JSON Object from the data source.
Declaration
public IEnumerable<TItem> Result { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TItem> |