英語で読む

次の方法で共有


Point.X プロパティ

定義

この Point の x 座標を取得または設定します。

C#
public int X { get; set; }

プロパティ値

この Point の x 座標。

次のコード例では、 演算子を使用 Equality する方法と、 または 2 つの整数から を Point 構築する方法を Size 示します。 また、 プロパティと Y プロパティの使用方法Xも示します。 この例は、Windows フォームで使用するように設計されています。 という名前 Button1のボタンを含むフォームにコードを貼り付け、 メソッドを Button1_Click ボタンの Click イベントに関連付けます。

C#
private void Button1_Click(System.Object sender, System.EventArgs e)
{

    // Construct a new Point with integers.
    Point Point1 = new Point(100, 100);

    // Create a Graphics object.
    Graphics formGraphics = this.CreateGraphics();

    // Construct another Point, this time using a Size.
    Point Point2 = new Point(new Size(100, 100));

    // Call the equality operator to see if the points are equal,  
    // and if so print out their x and y values.
    if (Point1 == Point2)
    {
        formGraphics.DrawString(String.Format("Point1.X: " +
            "{0},Point2.X: {1}, Point1.Y: {2}, Point2.Y {3}",
            new object[]{Point1.X, Point2.X, Point1.Y, Point2.Y}),
            this.Font, Brushes.Black, new PointF(10, 70));
    }
}

適用対象

製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 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
.NET Standard 2.0, 2.1