This property, which contains an AccessibleRole Enumeration enumeration, describes the user interface role of the control. A new control has the value set to Default. This would mean that by default, a Button control acts as a Button. You may want to reset this property if a control has another role. For example, you may be using a PictureBox control as a Chart, and you may want accessibility aids to report the role as a Chart, not as a PictureBox. You may also want to specify this property for custom controls you have developed. This property may be set in the Properties window, or in code as follows:
' Visual Basic
PictureBox1.AccessibleRole = AccessibleRole.Chart
// C#
PictureBox1.AccessibleRole = AccessibleRole.Chart;
// C++
pictureBox1->AccessibleRole = AccessibleRole::Chart;