NS_Glyph.GErrBBox.Draw C# (CSharp) Method

Draw() public method

public Draw ( I_Draw i_draw, NS_IDraw.DrawParam dp ) : void
i_draw I_Draw
dp NS_IDraw.DrawParam
return void
        public override void Draw(I_Draw i_draw, DrawParam dp)
        {
            if (((object)this.bboxInit==null)||((object)this.bboxCP==null))
                return;
            DrawParam dpBoxInit=new DrawParam("Red",1);
            this.bboxInit.Draw(i_draw,dpBoxInit);
            DrawParam dpBoxCP=new DrawParam("Cyan",1);
            this.bboxCP.Draw(i_draw,dpBoxCP);
        }