Delphi What Does HintColor In DelphiVCL.Application Do?

FireWind

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

HintColor or DelphiVCL.Application.HintColor property determines the color of the hint boxes for the Help Hints for the application.

Use HintColor to specify the hint box color. A default color value of clInfoBk is set for the HintColor property in the constructor when the application is created. To change the HintColor, assign it a new TColor value at run time.

Tip: To further customize the hint window, create a custom descendant of THintWindow and assign it to the global HintWindowClass variable.

Using the Python Dir() Command to browse properties​

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

Using the Python Print() Command to browse properties​

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