ImageEn, unit iesettings

TIEHintStyle


Declaration

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


Description

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


Demo

Demo  Demos\InputOutput\IEViewMulti\IEViewMulti.dpr


Example

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