UIContextState 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.
Describes the state of a given UI context.
public enum UIContextState
type UIContextState =
Public Enum UIContextState
- Inheritance
-
UIContextState
Fields
Name | Value | Description |
---|---|---|
NeverSet | 0 | The UI context is unknown to the system. This means it has never been set. Unknown UI contexts are implicitly considered to have a state of Inactive. If all you care about is active or not, this can be considered Inactive. Though this value allows you to differentiate a UI context having been set to inactive vs being implicitly inactive. |
Active | 1 | The UI context is set to an active state. |
Inactive | 2 | The UI context is set to an inactive state. |