Class SelectEventArgs
Inheritance
System.Object
SelectEventArgs
Implements
System.IEquatable<SelectEventArgs>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectEventArgs : Object, IEquatable<SelectEventArgs>
Constructors
SelectEventArgs()
Declaration
public SelectEventArgs()
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 |
E
Specifies the original event arguments.
Declaration
public object E { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IsInteracted
If the event is triggered by interaction, it returns true. Otherwise, it returns false.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item
Returns the selected list item
Declaration
public DOM Item { get; set; }
Property Value
Type | Description |
---|---|
DOM |
ItemData
Returns the selected item as JSON Object from the data source.
Declaration
public object ItemData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(SelectEventArgs)
Declaration
public bool Equals(SelectEventArgs selectEventArgs)
Parameters
Type | Name | Description |
---|---|---|
SelectEventArgs | selectEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>