AGENT.Contrib.Drawing.Point.Offset C# (CSharp) 메소드

Offset() 공개 메소드

Translates this System.Drawing.Point by the specified System.Drawing.Point
public Offset ( Point p ) : void
p Point
리턴 void
        public void Offset(Point p)
        {
            Offset(p.X, p.Y);
        }

Same methods

Point::Offset ( int dx, int dy ) : void