Vector.Y Property

Definition

Gets or sets the Y component of this vector.

C#
public double Y { get; set; }

Property Value

The Y component of this vector. The default value is 0.

Examples

The following example shows how to check two Vector structures for equality.

C#
// Checks if two Vectors are equal using the overloaded equality operator.
private Boolean vectorEqualityExample()
{

    // Declaring vecto1 and initializing x,y values
    Vector vector1 = new Vector(20, 30);

    // Declaring vector2 without initializing x,y values
    Vector vector2 = new Vector();

    // Boolean to hold the result of the comparison
    Boolean areEqual;

    // assigning values to vector2
    vector2.X = 45;
    vector2.Y = 70;

    // Comparing Vectors for equality
    // areEqual is False
    areEqual = (vector1 == vector2);

    return areEqual;
}

Applies to

Produk Versi
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also