Color::~

Color::~
inline Color operator ~() const;
Description

The operator ~ function returns a new color created from the bitwise NOT, also known as a one's complement, of the current color.

Return Value

A new Color containing the bitwise not of the 32-bit current color.

Examples
   Color color(170,136,34); // color is #00AA8822
   color = ~color; // color is #ff5577dd