ToolTip.StripAmpersands Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that determines how ampersand (&) characters are treated.
public:
property bool StripAmpersands { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(true)]
public bool StripAmpersands { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.StripAmpersands : bool with get, set
Public Property StripAmpersands As Boolean
Property Value
true
if ampersand characters are stripped from the ToolTip text; otherwise, false
. The default is false.
- Attributes
Remarks
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.