Class ComboBoxValueChangedEventArgs
Provides event data for the ComboBox ValueChanged event.
Inheritance
System.Object
ComboBoxValueChangedEventArgs
Namespace: Syncfusion.Maui.Inputs
Assembly: Syncfusion.Maui.Inputs.dll
Syntax
public class ComboBoxValueChangedEventArgs : EventArgs
Constructors
ComboBoxValueChangedEventArgs()
Declaration
public ComboBoxValueChangedEventArgs()
Properties
NewValue
Gets the new value after the change.
Declaration
public string NewValue { get; }
Property Value
Type | Description |
---|---|
System.String | The new value of the item. |
OldValue
Gets the previous value before the change.
Declaration
public string OldValue { get; }
Property Value
Type | Description |
---|---|
System.String | The old value of the item. |