![]() | Type | Description | ||
| String | A string expression that defines the button's tooltip. |
The ToolTipText supports the following HTML tags:

In the VB environment, the extended wrapper control that implements properties like Visible, Top, Left, Width, Height ... and so on includes also a property named TooltipText that can provide confusions. In order to avoid confusions on this name, the VB users must call at runtime a code like:
With Button1
.Object.ToolTipText = "In VB, this is the right way to call the ToolTipText property at runtime."
End WithIf the Object property is missing, the code changes the TooltipText property of the VB extended class, instead calling object's property.