Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ToolTip::StripAmpersands Property

 

Gets or sets a value that determines how ampersand (&) characters are treated.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(true)]
property bool StripAmpersands {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if ampersand characters are stripped from the ToolTip text; otherwise, false. The default is false.

An application commonly uses the same string resource for multiple purposes, such as a menu item and a ToolTip. However, menus often enable accelerators, denoted by an ampersand character, in the menu item string. ToolTips do not support this capability, so by default, ampersands are just displayed as normal characters. Setting the StripAmpersands property to true removes all ampersands from the ToolTip text.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft