Paint.PaintToolBox.SetBrushSizeRectange C# (CSharp) Method

SetBrushSizeRectange() private method

Sets the brush size rectange.
private SetBrushSizeRectange ( int brushWidth ) : void
brushWidth int /// Brush width. ///
return void
        private void SetBrushSizeRectange(int brushWidth)
        {
            this.Brush = new Rectangle(0, 0, brushWidth, brushWidth);
        }