New to Telerik UI for .NET MAUIStart a free 30-day trial

Provides data for the IsCheckedChanged event.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class IsCheckedChangedEventArgs : EventArgs

Inheritance: objectEventArgsIsCheckedChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the IsCheckedChangedEventArgs class.

C#
public IsCheckedChangedEventArgs(bool? oldValue, bool? newValue)
Parameters:oldValuebool?

The previous checked state value.

newValuebool?

The new checked state value.

Properties

Gets the new checked state value.

C#
public bool? NewValue { get; }
Property Value:

A nullable bool representing the new checked state, or null if indeterminate.

Gets the previous checked state value.

C#
public bool? OldValue { get; }
Property Value:

A nullable bool representing the previous checked state, or null if indeterminate.