Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the tooltip text for the control.
Syntax
public str toolTip()
Run On
Client
Return Value
Type: str
The tooltip text for the control; an empty string if no tooltip text has been defined for the control.
Remarks
The method might be overridden to provide a value to the toolTip method.
Examples
The following example shows how to override the toolTip method.
str toolTip()
{
return "Account numbers of customers eligible for discount";
}