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