ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The AutomaticTooltip property enables or disables automatic tooltips on:
  • List Box controls.
  • Table controls.
  • TreeView Table controls.
  • TreeView controls.
Reminder: Automation tooltips are tooltips that appear automatically when the content of a cell or line is truncated.. This allows users to see the entire content of the element without having to perform any specific operations.
Example
// Disables the automatic tooltip
TABLE_MyTable.AutomaticTooltip = False
Syntax

Determining if the automatic tooltips are enabled Hide the details

<Result> = <Control used>.AutomaticTooltip
<Result>: Boolean
  • True if the automatic tooltips are enabled,
  • False otherwise.
Note: By default, automation bubbles are enabled.
<Control used>: Control name
Name of the control used:
  • Table control,
  • TreeView Table control,
  • List Box control,
  • TreeView control.

Enabling or disabling the automatic tooltips Hide the details

<Control used>.AutomaticTooltip = <New value>
<Control used>: Control name
Name of the control used:
  • Table control,
  • TreeView Table control,
  • List Box control,
  • TreeView control.
<New value>: Boolean
  • True to enable the automatic tooltips,
  • False to disable them.
Remarks
If the project contains custom tooltips, they will display the text of the automatic tooltips. For more details, see Custom tooltips.
Minimum version required
  • Version 15
Comments
Click [Add] to post a comment

Last update: 12/05/2024

Send a report | Local help