Class SwitchStateChangedEventArgs
Represents switch state changed event arguments.
Inheritance
System.Object
SwitchStateChangedEventArgs
Namespace: Syncfusion.Maui.Buttons
Assembly: Syncfusion.Maui.Buttons.dll
Syntax
public class SwitchStateChangedEventArgs : EventArgs
Remarks
It contains information like old value and new value.
Constructors
SwitchStateChangedEventArgs()
Declaration
public SwitchStateChangedEventArgs()
Properties
NewValue
Gets or set a new value when switch state is changed.
Declaration
public Nullable<bool> NewValue { get; }
Property Value
Type |
---|
System.Nullable<System.Boolean> |
OldValue
Gets or set a old value when switch state is changed.
Declaration
public Nullable<bool> OldValue { get; }
Property Value
Type |
---|
System.Nullable<System.Boolean> |