Difference between revisions of "DesktopContainer.Tooltip"
From Xojo Documentation
(Created page with "N/A") |
|||
Line 1: | Line 1: | ||
− | + | {{PropertyBox | |
+ | | name=Tooltip | ||
+ | | owner=[[DesktopContainer]] | ||
+ | | ownertype=class | ||
+ | | scope=public | ||
+ | | type=[[String]] | ||
+ | | platform=all | ||
+ | | newinversion=2021r3 | ||
+ | }} | ||
+ | {{Description | ||
+ | |text = Text of help message displayed as a Windows or Linux "tip" or macOS help tag. }} | ||
+ | |||
+ | The tip/tag is displayed when the user places the mouse on the control and leaves it there. | ||
+ | |||
+ | ==Example== | ||
+ | |||
+ | <rbcode> | ||
+ | Me.Tooltip = "This is a tooltip." | ||
+ | </rbcode> |
Latest revision as of 19:11, 23 July 2021
Property (As String )
aDesktopContainer.Tooltip = newStringValue
or
StringValue = aDesktopContainer.Tooltip
New in 2021r3
Supported for all project types and targets.
or
StringValue = aDesktopContainer.Tooltip
New in 2021r3
Supported for all project types and targets.
Text of help message displayed as a Windows or Linux "tip" or macOS help tag.
The tip/tag is displayed when the user places the mouse on the control and leaves it there.
Example
Me.Tooltip = "This is a tooltip."