Color::==

Color::==
inline bool operator ==(Color c) const;
Description

The operator == function determines the equality 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
Parameters 
Description 
Color c 
A color object that is compared to the current color. 
Return Value

A Boolean value of 1 (true) if the two colors are equal or 0 (false) if they are not.

See Also