Shape.AccessibleDefaultActionDescription Property

 

Gets or sets the default action description of the control for use by accessibility client applications.

Namespace:   Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

[BrowsableAttribute(false)]
public string AccessibleDefaultActionDescription { get; set; }
public:
[BrowsableAttribute(false)]
property String^ AccessibleDefaultActionDescription {
    String^ get();
    void set(String^ value);
}
[<BrowsableAttribute(false)>]
member AccessibleDefaultActionDescription : string with get, set
<BrowsableAttribute(False)>
Public Property AccessibleDefaultActionDescription As String

Property Value

Type: System.String

The default action description of the control for use by accessibility client applications. For Shape, the default action is Click.

Remarks

The AccessibleDefaultActionDescription property describes the primary method of manipulation from the user's viewpoint. This property should be a verb or a short verb phrase.

Note

Not all objects have default actions, and some objects might have a default action that is related to its Value property, such as in the following examples:

  • A selected check box has a default action of Uncheck and a value of Checked.

  • A cleared check box has a default action of Check and a value of Unchecked.

  • A button labeled Print has a default action of Press without a value.

  • A label or a text box control that displays Printer has no default action, but would have a value of Printer.

See Also

Shape Class
Microsoft.VisualBasic.PowerPacks Namespace
How to: Draw Lines with the LineShape Control (Visual Studio)
How to: Draw Shapes with the OvalShape and RectangleShape Controls (Visual Studio)
Introduction to the Line and Shape Controls (Visual Studio)

Return to top