VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
var rectTool = new RectangularSelectionToolWithCopyPaste();
var rectTool1 = new RectangularSelectionToolWithCopyPaste();
var rectTool2 = new RectangularSelectionToolWithCopyPaste();
var ellipseTool = new CustomSelectionTool();
imageBox.VisualTool = new CompositeVisualTool(rectTool, rectTool1,rectTool2, ellipseTool);
rectTool.Rectangle = new System.Drawing.Rectangle(0, 0, 100, 100);
rectTool1.Rectangle = new System.Drawing.Rectangle(100, 100, 500, 500);
rectTool2.Rectangle = new System.Drawing.Rectangle(500, 500, 500, 500);
ellipseTool.Selection = new EllipticalSelectionRegion(new System.Drawing.Rectangle(99, 1200, 700,300));
I see these selections on imageviewer but i can't risize or drag them: In VisualTools of imageViewer i see three selections and "user interaction visual tool".