ToolTip - property of the PmgObject object
Description:
Tooltip text of the Pmg object.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Tooltip text" configurator of this object.
This property is also functional in
Web panels.
This property is
not functional for object:
PmgRoot.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oObject = pMe.Items("/Txt0");
var sToolTip = oObject.ToolTip;
// Reading from the property
oObject.ToolTip = "Description";
// Writing into the property
Dim oObject
Set oObject = pMe.Items("/Txt0")
Dim sToolTip
sToolTip = oObject.ToolTip
' Reading from the property
oObject.ToolTip = "Description"
' Writing into the property