Treefrog.Presentation.Annotations.ImageAnnot.MoveBy C# (CSharp) Méthode

MoveBy() public méthode

public MoveBy ( int diffX, int diffY ) : void
diffX int
diffY int
Résultat void
        public void MoveBy(int diffX, int diffY)
        {
            Position = new Point(Position.X + diffX, Position.Y + diffY);
            //End = new Point(End.X + diffX, End.Y + diffY);
        }