ImageEn, unit iesettings

TIEGlobalSettings.HintStyle

TIEGlobalSettings.HintStyle

Declaration

property HintStyle: TIEHintStyle;

Description

Properties to customize the interaction hints and hover hint of TImageEnView.
Property Description Default
BorderColor The color of the rectangle border cl3DDkShadow
BorderWidth The width of the rectangle border 1
FillColor The color of the rectangle fill clWhite
Transparency The transparency of the rectangle, Range is 0 (transparent) to 255 (opaque) 128

Note:
The font of hover hints is specified by DefaultDialogFont
If Transparency is <255, GDI+ is used to draw the hint

Default: BorderColor: cl3DDkShadow, BorderWidth: 1, FillColor: clWhite, Transparency: 128

Demo

Demo  Demos\InputOutput\IEViewMulti\IEViewMulti.dpr

Example

// Draw hints with a solid white background and no border
IEGlobalSettings().HintStyle.FillColor    := clWhite;
IEGlobalSettings().HintStyle.Transparency := 255;
IEGlobalSettings().HintStyle.BorderWidth  := 0;