|
|
|
|
|
AutomaticTooltip (Property)
The AutomaticTooltip property enables or disables automatic tooltips on: - List Box controls.
- Table controls.
- TreeView Table controls.
- TreeView controls.
Reminder Automatic tooltips are tooltips that appear automatically as soon as 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. // Disables the automatic tooltip TABLE_MyTable.AutomaticTooltip = False
Sintaxis
Determining if the automatic tooltips are enabled Ocultar los detalles
<Result> = <Control used>.AutomaticTooltip
<Result>: Boolean - True if the automation bubbles are activated,
- 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 Ocultar los detalles
<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 - Real to activate automation bubbles,
- False to disable them.
Observaciones If the project contains custom tooltips, they will display the text of the automatic tooltips. For more details, see Custom tooltips.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|