Class
IsCheckedChangedEventArgs

Provides data for the IsCheckedChanged event.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class IsCheckedChangedEventArgs : EventArgs

Inheritance: objectEventArgsIsCheckedChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

IsCheckedChangedEventArgs(bool?, bool?)

Initializes a new instance of the IsCheckedChangedEventArgs class.

Declaration

cs-api-definition
public IsCheckedChangedEventArgs(bool? oldValue, bool? newValue)

Parameters

oldValue

bool?

The previous checked state value.

newValue

bool?

The new checked state value.

Properties

NewValue

Gets the new checked state value.

Declaration

cs-api-definition
public bool? NewValue { get; }

Property Value

bool?

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

OldValue

Gets the previous checked state value.

Declaration

cs-api-definition
public bool? OldValue { get; }

Property Value

bool?

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