LongoMatch.Drawing.Widgets.Blackboard.Blackboard C# (CSharp) Method

Blackboard() public method

public Blackboard ( IWidget widget ) : System
widget IWidget
return System
        public Blackboard(IWidget widget)
            : base(widget)
        {
            Accuracy = 5;
            SelectionMode = MultiSelectionMode.Single;
            LineWidth = 2;
            Color = Color.Red1;
            LineStyle = LineStyle.Normal;
            LineType = LineType.Arrow;
            FontSize = 12;
            tool = DrawTool.Selection;
            currentZoom = 1;
            MinZoom = MaxZoom = 1;
            if (Config.SupportsZoom) {
                MaxZoom = 4;
            }
        }