Class ChangeEventArgs<TValue, TItem>
Defines the change event.
Inheritance
System.Object
ChangeEventArgs<TValue, TItem>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangeEventArgs<TValue, TItem> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the type of ChangeEventArgs. |
TItem | Specifies the typr of value. |
Constructors
ChangeEventArgs()
Declaration
public ChangeEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the current action needs to be prevented.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
E
Gets or sets the original event arguments.
Declaration
public object E { get; set; }
Property Value
Type |
---|
System.Object |
Element
Gets or sets the selected list item element.
Declaration
public DOM Element { get; set; }
Property Value
Type |
---|
DOM |
IsInteracted
Gets or sets a value indicating whether the event is triggered by user interaction.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
Item
Gets or sets the selected list item.
Declaration
public DOM Item { get; set; }
Property Value
Type |
---|
DOM |
ItemData
Gets the selected item data.
Declaration
public TItem ItemData { get; }
Property Value
Type |
---|
TItem |
PreviousItem
Gets or sets the previous selected list item.
Declaration
public DOM PreviousItem { get; set; }
Property Value
Type |
---|
DOM |
PreviousItemData
Gets previous selected item data.
Declaration
public TItem PreviousItemData { get; }
Property Value
Type |
---|
TItem |
Value
Gets or sets the selected value.
Declaration
public TValue Value { get; set; }
Property Value
Type |
---|
TValue |