Vector::Equals Method (Vector)
.NET Framework (current version)
Compares two vectors for equality.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- value
-
Type:
System.Windows::Vector
The vector to compare with this vector.
Return Value
Type: System::Booleantrue if value has the same X and Y values as this vector; otherwise, false.
The following example shows how to use this method to check whether two Vector structures are equal.
private Boolean equalsExample2() { Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(20, 30); Boolean areEqual = false; // areEqual is True. Both parameters are Vector structures, // and they are equal. if (vector1.Equals(vector2)) { areEqual = true; } return areEqual; }
.NET Framework
Available since 3.0
Available since 3.0
Show: