ShapeContainer.AccessibleRole Property
Gets or sets the accessible role of the ShapeContainer.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
public AccessibleRole AccessibleRole { get; set; }
public:
property AccessibleRole AccessibleRole {
AccessibleRole get();
void set(AccessibleRole value);
}
member AccessibleRole : AccessibleRole with get, set
Public Property AccessibleRole As AccessibleRole
Property Value
Type: System.Windows.Forms.AccessibleRole
One of the values of AccessibleRole. The default is Default.
Exceptions
Exception | Condition |
---|---|
InvalidEnumArgumentException | The value assigned is not one of the AccessibleRole values. |
Remarks
The AccessibleRole property describes what kind of user interface element an object is. If the control's role cannot be determined, the AccessibleRole property is set to Default.
See Also
ShapeContainer Class
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the Line and Shape Controls (Visual Studio)
How to: Draw Lines with the LineShape Control (Visual Studio)
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)
Return to top