ImageEn, unit iexUserInteractions |
|
TIEFillToolInteraction.AlphaFillValue
Declaration
property AlphaFillValue: Integer;
Description
Specifies the Alpha to fill when flooding the clicked area.
Value is in the range 0: Fully Transparent - 255: Opaque.
Default: 0
// Fill clicked areas with transparency
ImageEnView1.FillTool.AlphaFillValue := 0;
ImageEnView1.FillTool.Tolerance := 128;
ImageEnView1.MouseInteractGeneral := [ miAlphaFill ];
// Fill clicked areas with 50% transparency
ImageEnView1.FillTool.AlphaFillValue := 128;
ImageEnView1.MouseInteractGeneral := [ miAlphaFill ];