Class SwitchStateChangingEventArgs
Represents switch state changing event arguments.
Inheritance
System.Object
SwitchStateChangingEventArgs
Namespace: Syncfusion.Maui.Buttons
Assembly: Syncfusion.Maui.Buttons.dll
Syntax
public class SwitchStateChangingEventArgs : CancelEventArgs
Remarks
It contains information like old value and new value.
Constructors
SwitchStateChangingEventArgs()
Declaration
public SwitchStateChangingEventArgs()
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> |