Delphi What Does The HintPause Property Of DelphiVCL.Application Do?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Does The HintPause Property Of DelphiVCL.Application Do?
By Muhammad Azizul Hakim August 27, 2021

The HintPause or DelphiVCL.Application.HintPause property is used to specify the time interval that passes before the control’s Help Hint appears when the user places the mouse pointer on a control or menu item.

Use HintPause to change the default pause time of 500 milliseconds (or 1/2second) that is set in the constructor. When assigning a value to HintPause, specify the interval in milliseconds. The Help Hint displayed at the end of the pause is specified in the Hint property.

How to browse all the properties and methods of DelphiVCL.Application.HintPause?

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.HintPause using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.HintPause)

See the responses in our Windows command prompt​

1630313996449.png
You can also read short information about the DelphiVCL.Application.HintPause using the print() command:
Python:
print(DelphiVCL.Application.HintPause)
print(DelphiVCL.Application.HintPause.__doc__)
See the responses in our Windows command prompt:
1630314022610.png