ClassIsCheckedChangingEventArgs
Class
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:
cs-api-definition
public class IsCheckedChangingEventArgs : EventArgs
Inheritance: objectEventArgsIsCheckedChangingEventArgs
Inherited Members
Constructors
IsCheckedChangingEventArgs(bool?, bool?)
Initializes a new instance of the IsCheckedChangingEventArgs class.
Properties
Cancel
Gets or sets a value indicating whether the event should be canceled.
Declaration
cs-api-definition
public bool Cancel { get; set; }
Property Value
true if the event should be canceled; otherwise, false. The default is false.
NewValue
Gets the new checked state value that will be applied if the event is not canceled.