ToggleState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains values that specify the ToggleState of a UI Automation element.
public enum class ToggleState
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("ad7db4af-7166-4478-a402-ad5b77eab2fa")]
public enum ToggleState
public enum ToggleState
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Runtime.InteropServices.Guid("ad7db4af-7166-4478-a402-ad5b77eab2fa")>]
type ToggleState =
type ToggleState =
Public Enum ToggleState
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Off | 0 | The UI Automation element is not selected, checked, marked, or otherwise activated. |
On | 1 | The UI Automation element is selected, checked, marked, or otherwise activated. |
Indeterminate | 2 | The UI Automation element is in an indeterminate state. |
Remarks
A control must cycle through its IToggleProvider.ToggleState in this order: On
, Off
, and, if supported, Indeterminate
.