FigureLength.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.
Compares two FigureLength structures for equality.
Overloads
Equals(Object) |
Determines whether the specified Object is a FigureLength and whether it is identical to this FigureLength. |
Equals(FigureLength) |
Compares two FigureLength structures for equality. |
Remarks
The two FigureLength structures must be exactly the same in every way, not just have the same Value.
Equals(Object)
Determines whether the specified Object is a FigureLength and whether it is identical to this FigureLength.
public:
override bool Equals(System::Object ^ oCompare);
public override bool Equals (object oCompare);
override this.Equals : obj -> bool
Public Overrides Function Equals (oCompare As Object) As Boolean
Parameters
Returns
true
if oCompare
is a FigureLength and is identical to this FigureLength; otherwise, false
.
Applies to
Equals(FigureLength)
Compares two FigureLength structures for equality.
public:
virtual bool Equals(System::Windows::FigureLength figureLength);
public bool Equals (System.Windows.FigureLength figureLength);
override this.Equals : System.Windows.FigureLength -> bool
Public Function Equals (figureLength As FigureLength) As Boolean
Parameters
- figureLength
- FigureLength
The FigureLength to compare to this instance.
Returns
true
if figureLength
is identical to this FigureLength; otherwise, false
.