ToolStripItem.AccessibleDescription Property

Definition

Gets or sets the description that will be reported to accessibility client applications.

public:
 property System::String ^ AccessibleDescription { System::String ^ get(); void set(System::String ^ value); };
public string AccessibleDescription { get; set; }
public string? AccessibleDescription { get; set; }
member this.AccessibleDescription : string with get, set
Public Property AccessibleDescription As String

Property Value

The description of the control used by accessibility client applications. The default is null.

Remarks

An object's AccessibleDescription property provides a textual description about an object's visual appearance. The description is primarily used to provide greater context for low-vision or blind users, but can also be used for context searching or other applications.

The AccessibleDescription property is needed if the description is not obvious, or if it is not redundant based on the object's AccessibleName, AccessibleRole, State, and Value properties. For example, a button labeled OK would not need additional information, but a button that shows a picture of a cactus would. The AccessibleName and AccessibleRole and, perhaps, AccessibleObject.Help properties for the cactus button would describe its purpose, but the AccessibleDescription property would convey information that is less tangible, such as "A button that shows a picture of a cactus."

For more information about properties of accessible objects, see Content of Descriptive Properties.

For samples, see the AccessibleObject class.

Applies to

See also