Sets the given informational tip that displays to the end-user when the mouse is dragged over the specified tool.
Syntax
'Declaration
Public Sub SetToolTip( _
ByVal As Tool, _
ByVal As String _
)
'Usage
Dim instance As Toolbar
Dim tool As Tool
Dim tipText As String
instance.SetToolTip(tool, tipText)
Parameters
- tool
- The Tool enumeration value which represents the tool to set the tip on.
- tipText
- A string value which represents the information tip to display.
See Also