ImageEn, unit iexUserInteractions |
|
TIECloneToolInteraction.BrushSize
Declaration
property BrushSize: Integer;
Description
Specifies the size of the area that is cloned.
Note:
◼You must call
TImageEnView.Invalidate if you change this property when the Clone selection is visible
◼The actual display size will be affected by
Zoom. I.e. at 50% zoom a brush of 50 pixels will display as 25 pixels
◼To specify a brush of different height and width, set
BrushHeight and
BrushWidthDefault: 50
// Make larger, circle cursor
ImageEnView1.CloneTool.BrushShape := iecsCircle;
ImageEnView1.CloneTool.BrushSize := 60;
ImageEnView1.Invalidate();