= SetBkColor = Sets the background color {{{#!c++ int SetBkColor(int nColor); }}} == Parameters == * nColor - index value to color == Return Value == * Returns the index of the previous background color. == Remarks == == Examples == {{{#!c++ SetBkColor(nColorWhite); SetCurColor(nColorBlack); PrintLCD("Black text on white background"); }}} {{{#!c++ 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]