WriteAttr$
Writes the attributes contained in the string
attrs
, beginning at
col
,
row
,
without affecting the characters that are on screen. The string
attrs
can be the
result of a $CONSOLE->WriteAttr($attrs, 0, 0); # note the use of chr()... $attrs = chr($FG_BLACK | $BG_WHITE) x 80; $CONSOLE->WriteAttr($attrs, 0, 0); |
|