Example #1
0
        public override void ZoomIn()
        {
            CellDetailBox        box     = new CellDetailBox(Text);
            SingleElementSurface surface = new SingleElementSurface(null, box);
            DesignerControl      control = DesignerControl.GetDesigner(this);

            control.Push(surface, Strings.Analyzer_TextDetailTitle);
        }
Example #2
0
        public override void ZoomIn()
        {
            XElement element = (XElement)Node.Element;

            DetailedPlanNodeBox box = new DetailedPlanNodeBox(element);

            box.RoundRadius  = this.RoundRadius;
            box.SurfaceColor = this.SurfaceColor;
            SingleElementSurface surface = new SingleElementSurface(element, box);

            DesignerControl control = DesignerControl.GetDesigner(this);

            control.Push(surface, Text);
        }