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

Offset() public method

Adjusts the location of this rectangle by the specified amount.
public Offset ( Point pos ) : void
pos Point Amount to offset the location.
return void
        public void Offset(Point pos)
        {
            Offset(pos.X, pos.Y);
        }

Same methods

Rectangle::Offset ( int x, int y ) : void