Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's Code Snippets.
Converts an RGB value to a TColor. To convert a TColor to an RGB value, use the ColorToRgb function.
* View the code of 'RgbToColor' in plain text.
//From http://www.richelbilderbeek.nl
const TColor RgbToColor(
const unsigned char red,
const unsigned char green,
const unsigned char blue )
{
return static_cast<TColor>(RGB(red,green,blue));
}
Go back to Richel Bilderbeek's Code Snippets.
Go back to Richel Bilderbeek's homepage.