ImageEn, unit iexUserInteractions |
|
TIERetouchToolInteraction.BrushShape
Declaration
property Brush: TIECursorShape;
Description
Specifies the shape of the brush used for retouching.
Note:
◼iecsRoundRect is not supported
◼iecsRectangle is not supported for
iermWarp◼If iecsDefault is specified, iecsCircle will be used
Default: iecsCircle
// Use rectangular cursor
ImageEnView1.RetouchTool.BrushShape := iecsRectangle;
ImageEnView1.Invalidate();
// Make larger, circle cursor
ImageEnView1.RetouchTool.BrushShape := iecsCircle;
ImageEnView1.RetouchTool.BrushSize := 60;
ImageEnView1.Invalidate();