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

'Declaration
<BrowsableAttribute(False)> _
Public Property AccessibleDefaultActionDescription As String
'Usage
Dim instance As Shape 
Dim value As String 

value = instance.AccessibleDefaultActionDescription

instance.AccessibleDefaultActionDescription = value
[BrowsableAttribute(false)]
public string AccessibleDefaultActionDescription { get; set; }
[BrowsableAttribute(false)]
public:
property String^ AccessibleDefaultActionDescription {
    String^ get ();
    void set (String^ value);
}
public function get AccessibleDefaultActionDescription () : String 
public function set AccessibleDefaultActionDescription (value : 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.

For more information about properties of accessible objects, see Content of Descriptive Properties in the Active Accessibility section of the MSDN Library.

.NET Framework Security

See Also

Reference

Shape Class

Shape Members

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

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)