inline bool operator !=(Color c) const;
The operator!= function determines the inequality of two colors by comparing their components. This function is constant and does not modify either of the colors. The following expression is used to determine the result: (this.Raw() != c.Raw()).
Parameters |
Description |
Color c |
A color object that is compared to the current color. |
A Boolean value of 1 (true) if the two colors are not equal or 0 (false) if they are.