Delphi What Is The Purpose Of DelphiVCL.Application.HideHint?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Is The Purpose Of DelphiVCL.Application.HideHint?
By Muhammad Azizul Hakim October 28, 2021

HideHint or DelphiVCL.Application.HideHint method hides the current hint.

Applications rarely, if ever, call HideHint directly. HideHint is used internally to hide the hint window at the appropriate times according to predetermined conditions and timer values. For example, CancelHint calls HideHint.

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

Let’s browse all the properties and methods of DelphiVCL.Application.HideHint using dir() command:
Python:
import DelphiVCL
 
dir(DelphiVCL.Application.HideHint)
See the responses in our Windows command prompt:
1635403039741.png
You can also read short information about the DelphiVCL.Application.HideHint using the print() command:
Python:
print(DelphiVCL.Application.HideHint)
print(DelphiVCL.Application.HideHint.__doc__)
See the responses in our Windows command prompt:
1635403073956.png