New to Telerik UI for WinFormsStart a free 30-day trial

Represents event data of the CheckStateChanging event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class CheckStateChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsCheckStateChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and

C#
public CheckStateChangingEventArgs(CheckState oldValue, CheckState newValue, bool canceled)
Parameters:oldValueCheckStatenewValueCheckStatecanceledbool

Properties

Gets or sets the new toggle state.

C#
public CheckState NewValue { get; set; }

Gets or sets the old toggle state.

C#
public CheckState OldValue { get; }