ImageEn, unit iesettings

TIEHintStyle

TIEHintStyle

Declaration

TIEHintStyle = class
  BorderColor  : TColor;
  BorderWidth  : Integer;
  FillColor    : TColor;
  Transparency : Integer;
end;

Description

Class of HintStyle for customizing 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

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;