Back to API Reference
Enum

TextSemanticStates

Independent semantic states announced by accessibility adapters.

public static readonly TextSemanticStates None = 0

No additional state.

public static readonly TextSemanticStates Disabled = 1 << 0

The entity rejects interaction.

public static readonly TextSemanticStates Selected = 1 << 1

The entity is selected by document or application state.

public static readonly TextSemanticStates Focused = 1 << 2

The entity currently owns keyboard/gamepad focus.

public static readonly TextSemanticStates Expanded = 1 << 3

The entity is expanded.

public static readonly TextSemanticStates Checked = 1 << 4

The entity is checked or toggled on.

public static readonly TextSemanticStates Busy = 1 << 5

An asynchronous operation is in progress.

public static readonly TextSemanticStates Invalid = 1 << 6

The represented value is invalid.

public static readonly TextSemanticStates Concealed = 1 << 7

Sensitive or spoiler content is concealed.

public static readonly TextSemanticStates Visited = 1 << 8

A navigable target has previously been visited.

public static readonly TextSemanticStates ReadOnly = 1 << 9

The content can be inspected but not edited.