Class IsCheckedChangedEventArgs
Provides data for the IsCheckedChanged event.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class IsCheckedChangedEventArgs : EventArgs
Constructors
IsCheckedChangedEventArgs(Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the IsCheckedChangedEventArgs class.
Declaration
public IsCheckedChangedEventArgs(Nullable<bool> oldValue, Nullable<bool> newValue)
Parameters
System.Nullable<System.Boolean>
oldValue
The previous checked state value. |
System.Nullable<System.Boolean>
newValue
The new checked state value. |
Properties
NewValue
Gets the new checked state value.
Declaration
public Nullable<bool> NewValue { get; }
Property Value
System.Nullable<System.Boolean>
A nullable System.Boolean representing the new checked state, or null if indeterminate. |
OldValue
Gets the previous checked state value.
Declaration
public Nullable<bool> OldValue { get; }
Property Value
System.Nullable<System.Boolean>
A nullable System.Boolean representing the previous checked state, or null if indeterminate. |