Class CheckStateChangingEventArgs
Represents event data of the CheckStateChanging event.
Inheritance
System.Object
CheckStateChangingEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class CheckStateChangingEventArgs : CancelEventArgs
Constructors
CheckStateChangingEventArgs(CheckState, CheckState, Boolean)
Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and
Declaration
public CheckStateChangingEventArgs(CheckState oldValue, CheckState newValue, bool canceled)
Parameters
System.Windows.Forms.CheckState
oldValue
|
System.Windows.Forms.CheckState
newValue
|
System.Boolean
canceled
|
Properties
NewValue
Gets or sets the new toggle state.
Declaration
public CheckState NewValue { get; set; }
Property Value
System.Windows.Forms.CheckState
|
OldValue
Gets or sets the old toggle state.
Declaration
public CheckState OldValue { get; }
Property Value
System.Windows.Forms.CheckState
|