Provides data for the IsCheckedChanging event, which occurs before the IsChecked property changes. This event allows cancellation of the state change.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class IsCheckedChangingEventArgs : EventArgs
Inheritance: objectEventArgsIsCheckedChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the IsCheckedChangingEventArgs class.
Properties
Gets or sets a value indicating whether the event should be canceled.
C#
public bool Cancel { get; set; }
true if the event should be canceled; otherwise, false. The default is false.
Gets the new checked state value that will be applied if the event is not canceled.
C#
public bool? NewValue { get; }
A nullable bool representing the new checked state, or null if indeterminate.