Quick tip from the Net:

2 different styles of expressing the same thing:

rect.moveLeft: 25 Down: 30

vs

Point p = rect.getLocation();
rect.setLocation( p.X() - 25, p.Y() + 30 );

Reply via email to