Share via


DataRepeaterItem.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 DataRepeaterItem 
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.

Remarks

The AccessibleDefaultActionDescription property describes the primary method of manipulation from the user's viewpoint. The value of 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 TextBox control that displays Printer has no default action, but has a value of Printer.

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

.NET Framework Security

See Also

Reference

DataRepeaterItem Class

DataRepeaterItem Members

Microsoft.VisualBasic.PowerPacks Namespace

Other Resources

Introduction to the DataRepeater Control (Visual Studio)