ImageEn, unit iexUserInteractions |
|
TIEBrushToolInteraction.AlphaTextureMax
Declaration
property AlphaTextureMax: Integer;
Description
Specify the maximum level of pixel transparency when
BrushFill is
iebfTextured,
iebfCenteredTexture or
iebfTexturedSpray.
When a textured brush is used the alpha channel of the brush is filled with random pixels of the range
AlphaTextureMin to
AlphaTextureMax0 is transparent, 255 is opaque, 1 - 254 are partially transparent.
Default: 84
// Use a dark textured brush
ImageEnView1.BrushTool.AlphaTextureMin := 32;
ImageEnView1.BrushTool.AlphaTextureMax := 128;
ImageEnView1.BrushTool.BrushFill := iebfTextured;