Fills a preview of the brush to Dest.
Result will be created by the method. You will need to free it.
First overload uses the current properties of the brush. Second allows you to pass your own values.
// Show a preview in ievPreview of the brush for the interaction tool selected in ImageEnView1 if miRetouchTool in ImageEnView1.MouseInteractGeneral then bmp := ImageEnView1.RetouchTool.GetBrushPreview() else if miCloneTool in ImageEnView1.MouseInteractGeneral then bmp := ImageEnView1.CloneTool.GetBrushPreview() else // miBrushTool bmp := ImageEnView1.BrushTool.GetBrushPreview(); ievPreview.Assign( bmp ); bmp.Free;