次の方法で共有


GraphicsPath::AddRectangle(constRectF&) メソッド (gdipluspath.h)

GraphicsPath::AddRectangle メソッドは、このパスに四角形を追加します。

構文

Status AddRectangle(
  const RectF & rect
);

パラメーター

rect

パスに追加する四角形への参照。

戻り値

の種類:状態

メソッドが成功した場合は、ok を返します。これは、Status 列挙体の要素です。

メソッドが失敗した場合は、Status 列挙体の他の要素のいずれかを返します。

備考

次の例では、GraphicsPath オブジェクト パスを作成し、パスに四角形を追加して、パスを描画します。

VOID Example_AddRectangle(HDC hdc)
{
   Graphics graphics(hdc);
   RectF rect(20.0f, 20.0f, 100.0f, 50.0f);

   GraphicsPath path;
   path.AddRectangle(rect);

   // Draw the path.
   Pen pen(Color(255, 255, 0, 0));
   graphics.DrawPath(&pen, &path);
}

必要条件

要件 価値
ヘッダー gdipluspath.h

関連項目

AddPolygon メソッド を する

領域 でのクリッピングの

パス の構築と描画の

パス グラデーション の作成の

GraphicsPath

パス

PointF

Polygons