ImageEn, unit iesettings

TIEImageEnGlobalSettings.HintStyle

TIEImageEnGlobalSettings.HintStyle


Declaration

property HintStyle: TIEHintStyle;


Description

Properties to customize the hints when interacting with TImageEnView.

Property Description Default
BorderColor The color of the rectangle border cl3DDkShadow
FillColor The color of the rectangle fill clWhite
Transparency The transparency of the rectangle, Range is 0 (transparent) to 255 (opaque) 128

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

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


Demo

Demo  Demos\InputOutput\IEViewMulti\IEViewMulti.dpr


Example

IEGlobalSettings().HintStyle.BorderColor := clBlue;
IEGlobalSettings().HintStyle.FillColor := clWhite;
IEGlobalSettings().HintStyle.Transparency := 255;