drawBox()
You can use the consoleLib.drawBox() system function to draws a rectangle in the active window, using the specified coordinates. The row and column numbers of these coordinates are relative to the upper left corner of the current window.
Syntax
consoleLib.drawBox(
row INT in,
column INT in,
depth INT in,
width INT in)
- row
- The row number relative to the upper left corner of the window, defining the upper left corner of the box.
- column
- The column number relative to the upper left corner of the window, defining the upper left corner of the box.
- depth
- The depth (or height) of the box.
- width
- The width of the box.