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.
See the responses in our Windows command prompt:

You can also read short information about the DelphiVCL.Application.HideHint using the print() command:
See the responses in our Windows command prompt:

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)

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__)
