Active Accessibility is available for Win98, WinNT 4.0 SP6, Windows 2000, Windows XP, or newer operating systems. A version for Windows 9x is also available, although with some limitations.
| What You Need |
| To get the most benefit from this article, you need a good understanding of C# and object-oriented programming and a general knowledge of the .NET environment, including Windows Forms and Custom Controls. Although a deep understanding of the system internals isn't necessary, understanding its basics will be advantageous. The examples in this article should be used with the final release of Visual Studio.NET (2003) on Windows 2000 or XP machines. To be able to test the samples you will need to have accessibility clients installed. For more information check the documentation of your operating system. |
Active Accessibility must provide several pieces of information about objects on the screen:
- Name
- Role (this describes the function of the object within the application)
- Location
- Current State
- Parent
- Child Count
If applicable the following properties must be supported as well:
- Keyboard Shortcut
- Default Action
- Value
- Child (if there are any accessible child objects)
- Focus
- Selection
The following properties are optional but should be supported to provide useful information about various visual elements, like bitmaps, charts, and others:
- Description
- Help Topic
- Help
Active Accessibility also provides notifications of user interface changes via Windows Events and
spatial and
logical navigation for screen reader software. Spatial navigation is relevant only within the context of a single container, and therefore rarely meaningful to an end user. One rare case in which spatial navigation can be useful is within a data grid or a list view where elements are arranged in a navigable wayfor example, where you can access data by moving left, right, up, or down within the view. Logical navigation is commonly used for hierarchically arranged objects with parents, children, and siblingssuch as in a menu, tree view, or within control groups. Logical navigation uses terms such as parent, child, next, and previous for traversing object hierarchies. Because logical navigation is widely used by navigational aids, all programs supporting Active Accessibility must fully support this form of navigation.