XColor Equals Function. Test whether the two colors are effectively the same. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Test whether the two colors are effectively the same

 

   
Syntax  

[C#]
bool Equals(XColor color)
override bool Equals(object color)

[Visual Basic]
Function Equals(color As XColor) As Boolean
Overrides Function Equals(other As Object) As Boolean

 

   

Params
 
Name Description
color The color to test against.
return Whether the two colors are the same.

 

   

Notes
 

Test whether the two colors are effectively the same.

Colors are considered equal if they have the same ColorSpace, the same number and values of color Components and the same Name. This represents value equality for the colors in question.

The underlying components of a color are represented as floating point numbers. Floating point numbers are subject to rounding errors, so there has to be a degree of latitude when comparing color values. The degree of latitude is, by default, determined by the color space. CMYK values use a percentage based scale so the value used to determine the resolution of the comparison is 1%. Other color spaces use an eight bit scale so the resolution of comparison is 1/256.

 

   

Example
 

None.