Paint.ToolBoxToolTouchBase.BlankAndRedrawWithBorder C# (CSharp) Method

BlankAndRedrawWithBorder() protected method

Blanks this tool and then redraws the border round the edge.
protected BlankAndRedrawWithBorder ( ) : void
return void
        protected void BlankAndRedrawWithBorder()
        {
            if (this.BorderWidth == 0)
            {
                this.Blank();
            }
            else
            {
                this.BlankAndRedrawWithBorder(this.Bounds);
            }
        }

Same methods

ToolBoxToolTouchBase::BlankAndRedrawWithBorder ( Rectangle redrawRectangle ) : void