ImageEn, unit iexUserInteractions

TIEBrushToolInteraction.BrushSize

TIEBrushToolInteraction.BrushSize


Declaration

property BrushSize: Integer;


Description

Specifies the size of the paint brush.

Note:
 To specify a brush of different height and width, set BrushHeight and BrushWidth
 Brush size is ignored if BrushFill is iebfImage

Default: 10


Examples

// Enable painting with a circular spray can brush
ImageEnView1.BrushTool.BrushShape := iecsCircle;
ImageEnView1.BrushTool.BrushFill  := iebfSpray;
ImageEnView1.BrushTool.BrushSize  := 50;
ImageEnView1.BrushTool.BrushColor := clRed;
ImageEnView1.MouseInteractGeneral := [ miBrushTool ];