Accessible Element

An accessibility object that implements accessibility support by mapping certain UI functions to standard accessibility actions that can be used by external accessibility aides.

Syntax

<Accessible
    DefaultAction="string"
    DefaultActionCommand="ICommand object"
    Description="string"
    HasPopup="{true | false}"
    Help="string"
    HelpTopic="int"
    IsChecked="{true | false}"
    IsDefault="{true | false}"
    IsExpanded="{true | false}"
    IsFocusable="{true | false}"
    IsFocused="{true | false}"
    IsHotTracked="{true | false}"
    IsInvisible="{true | false}"
    IsMarquee="{true | false}"
    IsOffScreen="{true | false}"
    IsPressed="{true | false}"
    IsProtected="{true | false}"
    IsSelectable="{true | false}"
    IsSelected="{true | false}"
    IsUnavailable="{true | false}"
    KeyboardShortcut="string"
    Name="string"
    Role="AccessibleRole enumeration"
    UniqueId="GUID"
    Value="string"
/>

Attributes

DefaultAction

Contains a description of the default action.

DefaultActionCommand

Specifies an ICommand object to invoke for default action.

Description

Contains a description.

HasPopup

Indicates whether the object has pop-up text.

Help

Contains help text.

HelpTopic

Identifies the help topic.

IsChecked

Indicates whether the object is checked.

IsDefault

Indicates whether the object is the default.

IsExpanded

Indicates whether the object is expanded.

IsFocusable

Indicates whether the object is focusable.

IsFocused

Indicates whether the object is focused.

IsHotTracked

Indicates whether the mouse is over the object.

IsInvisible

Indicates whether the object is invisible.

IsMarquee

Indicates whether to display the object as a marquee.

IsOffScreen

Indicates whether the object is offscreen.

IsPressed

Indicates whether the object is pressed.

IsProtected

Indicates whether the object is protected.

IsSelectable

Indicates whether the object is selectable.

IsSelected

Indicates whether the object is selected.

IsUnavailable

Indicates whether the object is unavailable.

KeyboardShortcut

Contains a keyboard shortcut.

Name

Contains the name.

Role

Identifies the accessibility role. This value must be a member of the AccessibleRole enumeration.

UniqueId

Specifies a globally unique identifier (GUID).

Value

Contains a value.

Remarks

State set on this object will be exposed via IAccessible for accessibility aides. For more information, see the following topics on the MSDN web site:

Requirements

Platform: Windows Vista Ultimate, Windows Vista Home Premium, and later

See Also