= 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 == * [wiki:SetCurColor SetCurColor] * [wiki:DisplayText DisplayText]