SetBkColor ¶
Sets the background color
int SetBkColor(int nColor);
Parameters ¶
- nColor - index value to color
Return Value ¶
- Returns the index of the previous background color.
Remarks ¶
Examples ¶
SetBkColor(nColorWhite); SetCurColor(nColorBlack); PrintLCD("Black text on white background");
int nPrevBk = SetBkColor(nColorWhite); int nPrevText = SetCurColor(nColorBlack); PrintLCD("Black text on white background"); SetBkColor(nPrevBk); SetCurColor(nPrevText);
See Also ¶
Last modified
3 weeks ago
Last modified on 03/12/25 08:06:55
Note:
See TracWiki
for help on using the wiki.