C
#define MoveRel(dX, dY) \ _cursorX += dX; \ _cursorY += dY;
Overview
This macro moves the graphic cursor relative to the current location. The given dX and dY displacement can be positive or negative numbers.
Input Parameters
Input Parameters |
Description |
dX |
Specifies the displacement of the graphic cursor for the horizontal direction. |
dY |
Specifies the displacement of the graphic cursor for the vertical direction. |
Returns
none
Preconditions
none
Side Effects
none