AGENT.Contrib.Drawing.Rectangle.Inflate C# (CSharp) Method

Inflate() public method

Enlarges this System.Drawing.Rectangle by the specified amount.
public Inflate ( Size size ) : void
size Size The amount to inflate this System.Drawing.Rectangle
return void
        public void Inflate(Size size)
        {
            m_Width += size.Width;
            m_Height += size.Height;
        }

Same methods

Rectangle::Inflate ( int width, int height ) : void