Class ActionCompleteEventArgs
Inheritance
System.Object
ActionCompleteEventArgs
Implements
System.IEquatable<ActionCompleteEventArgs>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionCompleteEventArgs : Object, IEquatable<ActionCompleteEventArgs>
Constructors
ActionCompleteEventArgs()
Declaration
public ActionCompleteEventArgs()
Properties
Actual
Return the actual records.
Declaration
public object Actual { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Aggregates
Return the aggregates
Declaration
public object Aggregates { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
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 |
Items
Return Items
Declaration
public object Items { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Query
Specify the query to complete the data
Declaration
public Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query |
Request
Return the request type
Declaration
public string Request { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Result
Returns the selected items as JSON Object from the data source.
Declaration
public object Result { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
VirtualSelectRecords
Return the virtualSelectRecords
Declaration
public object VirtualSelectRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Xhr
Return XMLHttpRequest
Declaration
public object Xhr { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(ActionCompleteEventArgs)
Declaration
public bool Equals(ActionCompleteEventArgs actionCompleteEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ActionCompleteEventArgs | actionCompleteEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>