|
|
|
|
|
ToolTipDelay (Function) In french: BulleDélai Used to modify: - the timeout before displaying the tooltips.
- the display duration of the tooltips. The current tooltip is automatically closed when the user moves the mouse cursor.
These modifications are performed for the current application.
ToolTipDelay(tooltipDelayBeforeOpening, 100)
ToolTipDelay(tooltipDelayDisplay, 500)
ToolTipDelay(tooltipDelayBeforeOpening, -1)
ToolTipDelay(tooltipDelayDisplay, -1)
Syntax
ToolTipDelay(<Type of Timeout> , <New timeout>)
<Type of Timeout>: Boolean constant Type of timeout to modify: | | tooltipDelayBeforeOpening | Timeout before displaying the tooltips. | tooltipDelayDisplay | Display duration for the tooltips of controls. |
<New timeout>: Integer or Duration - New timeout (in hundredths of a second). This parameter can correspond to:
- an integer corresponding to the number of hundredths of a second,
- a Duration variable,
- the duration in a readable format (e.g., 1 s or 10 ms).
- -1 to restore the default values (managed by Windows).
Remarks - Tooltips are enabled by default in the controls. To disable them, use ShowToolTip.
- The maximum display duration for the tooltips is set to 32765 ms (32,6 seconds). One way to increase this duration is to use a Static Text control that can be shown or hidden.
- This function configures both standard and custom tooltips.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|