Vcl.Forms.TApplication.HintColor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HintColor: TColor read FHintColor write SetHintColor;

C++

__property System::Uitypes::TColor HintColor = {read=FHintColor, write=SetHintColor, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TApplication

Description

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.

See Also