Color.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests whether two Color structures are identical.
Overloads
Equals(Object) |
Tests whether the specified object is a Color structure and is equivalent to this color. |
Equals(Color) |
Tests whether the specified Color structure is identical to this color. |
Equals(Color, Color) |
Tests whether two Color structures are identical. |
Equals(Object)
Tests whether the specified object is a Color structure and is equivalent to this color.
public:
override bool Equals(System::Object ^ o);
public override bool Equals (object o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean
Parameters
Returns
true
if the specified object is a Color structure and is identical to the current Color structure; otherwise, false
.
Remarks
Floating-point values can acquire a small degree of error when they are operated upon. The Equals method, the Equality operator, and the Inequality operator do not compensate for this and thus may not return the expected Boolean result.
The AreClose method uses a fuzzy equality algorithm that compensates for this floating-point arithmetic error by returning true
for a comparison of two Color structures that are practically identical, but whose values may differ by a minuscule amount.
See also
Applies to
Equals(Color)
Tests whether the specified Color structure is identical to this color.
public:
virtual bool Equals(System::Windows::Media::Color color);
public bool Equals (System.Windows.Media.Color color);
override this.Equals : System.Windows.Media.Color -> bool
Public Function Equals (color As Color) As Boolean
Parameters
Returns
true
if the specified Color structure is identical to the current Color structure; otherwise, false
.
Implements
Applies to
Equals(Color, Color)
Tests whether two Color structures are identical.
public:
static bool Equals(System::Windows::Media::Color color1, System::Windows::Media::Color color2);
public static bool Equals (System.Windows.Media.Color color1, System.Windows.Media.Color color2);
static member Equals : System.Windows.Media.Color * System.Windows.Media.Color -> bool
Public Shared Function Equals (color1 As Color, color2 As Color) As Boolean
Parameters
Returns
true
if color1
and color2
are exactly identical; otherwise, false
.
Remarks
Floating-point values can acquire a small degree of error when they are operated upon. The Equals method, the Equality operator, and the Inequality operator do not compensate for this and thus may not return the expected Boolean result.
The AreClose method uses a fuzzy equality algorithm that compensates for this floating-point arithmetic error by returning true
for a comparison of two Color structures that are practically identical, but whose values may differ by a minuscule amount.