FigureLength.Equals Method

Definition

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

oCompare
Object

The Object to compare to this instance.

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.

Implements

Applies to