setBgRgb method

void setBgRgb(
  1. int r,
  2. int g,
  3. int b
)

Set background to an RGB color.

Implementation

void setBgRgb(int r, int g, int b) {
  bg = Color.rgb;
  bgRgb = RgbColor(r, g, b);
  bgIndexed = null;
}