Class ChangeEventArgs<TValue>
Provides information about the Change event.
Inheritance
System.Object
ChangeEventArgs<TValue>
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangeEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Represents the Inplace Editor data source's type. |
Constructors
ChangeEventArgs()
Declaration
public ChangeEventArgs()
Properties
ItemData
Returns the information about the selected item from the AutoComplete/ComboBox/DropDownList data source.
Declaration
public dynamic ItemData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A dynamic object that contains information about the selected item from the data source. |
PreviousItemData
Returns the information about the previously selected item from the AutoComplete/ComboBox/DropDownList data source.
Declaration
public dynamic PreviousItemData { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A dynamic object containing information about the previously selected item from the data source. |
PreviousValue
Returns the information about the previously selected item's value in the InPlaceEditor.
Declaration
public TValue PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
TValue | A |
Value
Returns the current value of the InPlaceEditor.
Declaration
public TValue Value { get; set; }
Property Value
Type |
---|
TValue |