Purpose |
Return a composite character attribute (color). |
Syntax |
c? = SCREENATTR(row%, column%) |
Remarks |
The character attribute is an
If the coordinates are specified as 0,0, the default screen attribute (that which will be used for subsequent PRINT statements) is returned. Otherwise, the character attribute for the specified location is returned. |
See also |
|
Example |
Clr? = SCREENATTR(row&, col&) ForeGround? = Clr? MOD 16 BackGround? = Clr? \ 16 |