ImageEn, unit iexLayers

TIELayer.FillOpacity

TIELayer.FillOpacity


Declaration

property FillOpacity: double;


Description

Set the opacity of the layer fill.
This value is a percentage of the layer's opacity. I.e. if FillOpacity is 0.5, and Opacity is 0.5, then the fill's actual opacity will be 0.25.
Class Effect
TIEImageLayer N/A
TIEShapeLayer Affects the shape fill
TIELineLayer Affects the border and fill of the text label
TIEPolylineLayer Affects the polygon fill (if closed)
TIEAngleLayer N/A
TIETextLayer Affects the fill and border of the text box (but not the text itself)

Default: 1.0 (fully opaque)


Examples

// Make the border of a shape opaque and its fill 50% transparent
ImageEnView1.CurrentLayer.Opacity := 1.0;
ImageEnView1.CurrentLayer.FillOpacity := 0.5;
ImageEnView1.Update();