EnumToggleState
Specifies the possible states for toggle controls such as checkboxes, checkmarks, and toggle buttons.
Definition
Namespace:Telerik.WinControls.Enumerations
Assembly:Telerik.WinControls.dll
Syntax:
public enum ToggleState
Fields
Indeterminate
Indicates that the toggle control is in an indeterminate or mixed state.
Declaration
Indeterminate = 2
Field Value
Remarks
The indeterminate state is typically used when the toggle represents multiple items with different states, or when the current state cannot be determined. This is common in tree views with checkboxes where a parent node represents children with mixed states.
Off
Indicates that the toggle control is in the "off" or unchecked state.
Declaration
Off = 0
Field Value
Remarks
This represents the default, inactive, or false state of the toggle control. For checkboxes, this means unchecked; for radio buttons, this means not selected.
On
Indicates that the toggle control is in the "on" or checked state.
Declaration
On = 1
Field Value
Remarks
This represents the active, selected, or true state of the toggle control. For checkboxes, this means checked; for radio buttons, this means selected.