Delphi What does HintHidePause in DelphiVCL.Application do?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What does HintHidePause in DelphiVCL.Application do?
By Muhammad Azizul Hakim August 20, 2021

HintHidePause or DelphiVCL.Application.HintHidePause property is used to specify the time interval to wait before hiding the Help Hint if the mouse has not moved from the control or menu item.

Use HintHidePause to specify a wait time in milliseconds. The default value is 2500 milliseconds (or 2 1/2seconds), which is set in the constructor. The Help Hint for the control or menu item is specified in the Hint property.

Note: The default HintHidePause value is several times longer than HintPause.

Using the Python dir() command to browse properties​

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.HintHidePause using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.HintHidePause)
See the responses in our Windows command prompt:
1629443163539.png

Using the Python print() command to browse properties​

You can also read short information about the DelphiVCL.Application.HintHidePause using the print() command:
Python:
print(DelphiVCL.Application.HintHidePause)
print(DelphiVCL.Application.HintHidePause.__doc__)
See the responses in our Windows command prompt:
1629443190980.png
The responses return the default value or 2500 milliseconds as we have mentioned earlier.