AccessibleStates Enumeration
Specifies values representing possible states for an accessible object.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.FormsAssembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Member name | Description | |
|---|---|---|
| None | No state. | |
| Unavailable | An unavailable object. | |
| Selected | A selected object. | |
| Focused | An object with the keyboard focus. | |
| Pressed | A pressed object. | |
| Checked | An object with a selected check box. | |
| Mixed | A three-state check box or toolbar button whose state is indeterminate. The check box is neither checked nor unchecked, and it is in the third or mixed state. | |
| Indeterminate | A three-state check box or toolbar button whose state is indeterminate. The check box is neither checked nor unchecked, and it is in the third or mixed state. | |
| ReadOnly | A read-only object. | |
| HotTracked | The object hot-tracked by the mouse, meaning its appearance is highlighted to indicate the mouse pointer is located over it. | |
| Default | The default button or menu item. | |
| Expanded | The displayed children of the object that are items in an outline or tree structure. | |
| Collapsed | The hidden children of the object that are items in an outline or tree structure. | |
| Busy | A control that cannot accept input in its current condition. | |
| Floating | The object that is not fixed to the boundary of its parent object and that does not move automatically along with the parent. | |
| Marqueed | An object with scrolling or moving text or graphics. | |
| Animated | The object that rapidly or constantly changes appearance. Graphics that are occasionally animated, but not always, should be defined as Graphic OR Animated. This state should not be used to indicate that the object's location is changing. | |
| Invisible | An object without a visible user interface. | |
| Offscreen | No on-screen representation. A sound or alert object would have this state, or a hidden window that is never made visible. | |
| Sizeable | A sizable object. | |
| Moveable | A movable object. | |
| SelfVoicing | The object or child can use text-to-speech (TTS) to describe itself. A speech-based accessibility aid should not announce information when an object with this state has the focus, because the object automatically announces information about itself. | |
| Focusable | The object on the active window that can receive keyboard focus. | |
| Selectable | An object that can accept selection. | |
| Linked | A linked object that has not been previously selected. | |
| Traversed | A linked object that has previously been selected. | |
| MultiSelectable | An object that accepts multiple selected items. | |
| ExtSelectable | The altered selection such that all objects between the selection anchor, which is the object with the keyboard focus, and this object take on the anchor object's selection state. If the anchor object is not selected, the objects are removed from the selection. If the anchor object is selected, the selection is extended to include this object and all objects in between. You can set the selection state by combining this with AccessibleSelection::AddSelection or AccessibleSelection::RemoveSelection. This state does not change the focus or the selection anchor unless it is combined with AccessibleSelection::TakeFocus. | |
| AlertLow | The low-priority information that might not be important to the user. | |
| AlertMedium | The important information that does not need to be conveyed to the user immediately. For example, when a battery-level indicator is starting to reach a low level, it could generate a medium-level alert. Blind access utilities could then generate a sound to let the user know that important information is available, without actually interrupting the user's work. Users can then query the alert information any time they choose. | |
| AlertHigh | The important information that should be conveyed to the user immediately. For example, a battery-level indicator reaching a critical low level would transition to this state, in which case, a blind access utility would announce this information immediately to the user, and a screen magnification program would scroll the screen so that the battery indicator is in view. This state is also appropriate for any prompt or operation that must be completed before the user can continue. | |
| Protected | A password-protected edit control. | |
| HasPopup | The object displays a pop-up menu or window when invoked. | |
| Valid | Obsolete. A valid object. This property is deprecated in .NET Framework 2.0. |
The following code example demonstrates the creation of an accessibility-aware chart control, using the AccessibleObject and Control::ControlAccessibleObject classes to expose accessible information. The control plots two curves along with a legend. The ChartControlAccessibleObject class, which derives from ControlAccessibleObject, is used in the CreateAccessibilityInstance method to provide custom accessible information for the chart control. Because the chart legend is not an actual control based on Control, but instead is drawn by the chart control, it does not contain any built-in accessible information. Because of this, the ChartControlAccessibleObject class overrides the GetChild method to return the CurveLegendAccessibleObject that represents accessible information for each part of the legend. When an accessible-aware application uses this control, the control can provide the necessary accessible information.
This code excerpt demonstrates using the AccessibleStates enumeration with the State property. See the AccessibleObject class overview for the complete code example.
// Inner class ChartControlAccessibleObject represents accessible information associated with the ChartControl. // The ChartControlAccessibleObject is returned in the ChartControl::CreateAccessibilityInstance . ref class ChartControlAccessibleObject: public ControlAccessibleObject { private: ChartControl^ chartControl; public: ChartControlAccessibleObject( ChartControl^ ctrl ) : ControlAccessibleObject( ctrl ) { chartControl = ctrl; } property System::Windows::Forms::AccessibleRole Role { // Gets the role for the Chart. This is used by accessibility programs. virtual System::Windows::Forms::AccessibleRole get() override { return ::AccessibleRole::Chart; } } property AccessibleStates State { // Gets the state for the Chart. This is used by accessibility programs. virtual AccessibleStates get() override { return AccessibleStates::ReadOnly; } } // The CurveLegend objects are "child" controls in terms of accessibility so // return the number of ChartLengend objects. virtual int GetChildCount() override { return chartControl->Legends->Length; } // Gets the Accessibility object of the child CurveLegend idetified by index. virtual AccessibleObject^ GetChild( int index ) override { if ( index >= 0 && index < chartControl->Legends->Length ) { return chartControl->Legends[ index ]->AccessibilityObject; } return nullptr; } internal: // Helper function that is used by the CurveLegend's accessibility object // to navigate between sibiling controls. Specifically, this function is used in // the CurveLegend::CurveLegendAccessibleObject.Navigate function. AccessibleObject^ NavigateFromChild( CurveLegend::CurveLegendAccessibleObject^ child, AccessibleNavigation navdir ) { switch ( navdir ) { case AccessibleNavigation::Down: case AccessibleNavigation::Next: return GetChild( child->ID + 1 ); case AccessibleNavigation::Up: case AccessibleNavigation::Previous: return GetChild( child->ID - 1 ); } return nullptr; } // Helper function that is used by the CurveLegend's accessibility object // to select a specific CurveLegend control. Specifically, this function is used // in the CurveLegend::CurveLegendAccessibleObject.Select function. void SelectChild( CurveLegend::CurveLegendAccessibleObject^ child, AccessibleSelection selection ) { int childID = child->ID; // Determine which selection action should occur, based on the // AccessibleSelection value. if ( (selection & AccessibleSelection::TakeSelection) != (AccessibleSelection)0 ) { for ( int i = 0; i < chartControl->Legends->Length; i++ ) { if ( i == childID ) { chartControl->Legends[ i ]->Selected = true; } else { chartControl->Legends[ i ]->Selected = false; } } // AccessibleSelection->AddSelection means that the CurveLegend will be selected. if ( (selection & AccessibleSelection::AddSelection) != (AccessibleSelection)0 ) { chartControl->Legends[ childID ]->Selected = true; } // AccessibleSelection->AddSelection means that the CurveLegend will be unselected. if ( (selection & AccessibleSelection::RemoveSelection) != (AccessibleSelection)0 ) { chartControl->Legends[ childID ]->Selected = false; } } } }; // class ChartControlAccessibleObject
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.