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

Offset() public method

Adjusts the location of this rectangle by the specified amount.
public Offset ( int x, int y ) : void
x int The horizontal offset.
y int The vertical offset.
return void
        public void Offset(int x, int y)
        {
            m_X += x;
            m_Y += y;
        }

Same methods

Rectangle::Offset ( Point pos ) : void