What's AccessibleRole?

  • Thread starter Thread starter Lars Netzel
  • Start date Start date
L

Lars Netzel

Hey!

I read in the help files but it does'nt give me any better understanding...
can someone give a concrete example of a AccessibleRole of a DataGrid and
what it can do for me?

Regards
/Lars
 
Lars,

Here is some information from MCAD/MCSD Self-Paced Training Kit:
Developing Windows-Based Applications with Microsoft Visual Basic
..NET, and Microsoft Visual C# .NET
http://www.amazon.com/exec/obidos/t...11-1/ref=sr_11_1/103-1356139-6693408?v=glance

The AccessibleRole property contains an enum value that determines how
an accessibility aid treats your control. This property is normally
set to (Default), which indicates that each control is acting in its
usual manner. It is important to set this property, however, when a
control is acting in a manner more consistent with another type of
control, or for custom controls. For example, if you have a custom
control that displays data in a chart form, you would set the
AccessibleRole property value to Chart. The accessibility aids would
then treat the control as a chart.

Hope that helps!
--Tom
 
Back
Top