drawBoxWithColor()

You can use the consoleLib.drawBoxWithColor() system function to draw a rectangle in the active window, using the specified coordinates and color.

Syntax

  consoleLib.drawBox(
    row INT in,
    column INT in,
    depth INT in,
    width INT in,
    color enumerationColorKind in)
row
The row number relative to the upper left corner of the window for the upper left corner of the box.
column
The column number relative to the upper left corner of the window for the upper left corner of the box.
depth
The depth (or height) of the box.
width
The width of the box.
color
The color of the box.

Feedback