|
|
|
|
|
AutomaticTooltip (Property) In french: BulleAutomatique
The AutomaticTooltip property is used enable or disable automatic tooltips on: - List Box controls.
- Table controls.
- TreeView Table controls.
- TreeView controls.
Reminder: The automatic tooltips are tooltips that automatically appear as soon as the content of a cell or the content of a row is truncated. Therefore, the user can see the full content of the element without having to perform any specific operations. // Disables the automatic tooltip TABLE_MyTable.AutomaticTooltip = False
Syntax
Finding out whether the automatic tooltips are enabled Hide the details
<Result> = <Control used>.AutomaticTooltip
<Result>: Boolean - True if the automatic tooltips are enabled,
- False otherwise.
Remark: The automatic tooltips are enabled by default.
<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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|