RectangleF.FromLTRB(Single, Single, Single, Single) メソッド

定義

左上隅および右下隅が指定の位置に設定された RectangleF 構造体を作成します。

public:
 static System::Drawing::RectangleF FromLTRB(float left, float top, float right, float bottom);
public static System.Drawing.RectangleF FromLTRB (float left, float top, float right, float bottom);
static member FromLTRB : single * single * single * single -> System.Drawing.RectangleF
Public Shared Function FromLTRB (left As Single, top As Single, right As Single, bottom As Single) As RectangleF

パラメーター

left
Single

四角形領域の左上隅の x 座標。

top
Single

四角形領域の左上隅の y 座標。

right
Single

四角形領域の右下隅の x 座標。

bottom
Single

四角形領域の右下隅の y 座標。

戻り値

このメソッドが作成する新しい RectangleF オブジェクト。

注釈

このメソッドは、指定した左上隅と右下隅を持つ を作成 RectangleF します。

適用対象