Class ChangeEventArgs<T>
Inheritance
System.Object
ChangeEventArgs<T>
Implements
System.IEquatable<ChangeEventArgs<T>>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangeEventArgs<T> : Object, IEquatable<ChangeEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ChangeEventArgs()
Declaration
public ChangeEventArgs()
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 |
Element
Returns the root element of the component.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
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 |
PreviousItem
Returns the previous selected list item
Declaration
public DOM PreviousItem { get; set; }
Property Value
Type | Description |
---|---|
DOM |
PreviousItemData
Returns the previous selected item as JSON Object from the data source.
Declaration
public object PreviousItemData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Value
Returns the selected value
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |
Methods
Equals(ChangeEventArgs<T>)
Declaration
public bool Equals(ChangeEventArgs<T> changeEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ChangeEventArgs<T> | changeEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>