Appendix A: System Routines — Windows
1181
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
WinMoveRel
Declaration:
void
WinMoveRel
(WINDOW *
w
, WIN_COORDS
x0
, WIN_COORDS
y0
)
Category(ies):
Windows
Description:
Set the pen position relative to the current pen position. The pen position is
set with
WinMoveTo
. It affects where
WinChar
and
WinStr
draw
characters and strings as well as the line position for
WinLineRel
and
WinLineTo
.
Inputs:
w
— WINDOW struct of a previously opened window.
x0, y0
— New, relative, pen position.
Outputs:
None
Assumptions:
None
Side Effects:
Sets the current pen position for the window until changed.
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: WinMoveTo, WinChar, WinStr, WinLineRel, WinLineTo
Example:
See
WinChar
and
WinStr
.