次の方法で共有


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

GraphicsPath::AddEllipse メソッドは、このパスに省略記号を追加します。

構文

Status AddEllipse(
  const RectF & rect
);

パラメーター

rect

楕円を囲む四角形への参照。

戻り値

の種類:状態

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

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

備考

GraphicsPath オブジェクトは、4 つの接続されたベジエ スプラインのシーケンスとして楕円を格納します。 GraphicsPath オブジェクトには、楕円の外接する四角形の左上隅、幅、高さは格納されません。

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

VOID Example_AddEllipse(HDC hdc)
{
   Graphics graphics(hdc); 
   RectF rect(20.0f, 20.0f, 200.0f, 100.0f);

   GraphicsPath path;
   path.AddEllipse(rect);

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

必要条件

要件 価値
ヘッダー gdipluspath.h

関連項目

AddArc メソッドの

AddEllipse メソッドの

領域 でのクリッピングの

パス の構築と描画の

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

楕円と円弧の

GraphicsPath

パス

RectF