Class ActionBeginEventArgs
Inheritance
System.Object
ActionBeginEventArgs
Implements
System.IEquatable<ActionBeginEventArgs>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionBeginEventArgs : Object, IEquatable<ActionBeginEventArgs>
Constructors
ActionBeginEventArgs()
Declaration
public ActionBeginEventArgs()
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 |
Data
Set the data source to action begin
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
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 begin the data
Declaration
public Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query |
Methods
Equals(ActionBeginEventArgs)
Declaration
public bool Equals(ActionBeginEventArgs actionBeginEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ActionBeginEventArgs | actionBeginEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>