Important: The information in this document is obsolete and should not be used for new development.
Move
To move the graphics pen a particular distance, use theMove
procedure.
PROCEDURE Move (dh,dv: Integer);
dh
- The horizontal distance of the graphics pen's movement.
dv
- The vertical distance of the graphics pen's movement.
DESCRIPTION
TheMove
procedure moves the graphics pen from its current location in the current graphics port a horizontal distance that you specify in thedh
parameter and a vertical distance that you specify in thedv
parameter. TheMove
procedure calls
MoveTo(h+dh,v+dv)where(h,v)
is the graphics pen's current location in local coordinates. TheMove
procedure performs no drawing.SEE ALSO
Listing 3-1 on page 3-15 illustrates how to use this procedure.