共用方式為


GraphicsPath::AddEllipse(constRectF&) 方法 (gdipluspath.h)

GraphicsPath::AddEllipse 方法會將橢圓形新增至此路徑。

語法

Status AddEllipse(
  const RectF & rect
);

參數

rect

系結橢圓形的矩形參考。

傳回值

類型:狀態

如果方法成功,它會傳回Ok,這是 Status 列舉的元素。

如果方法失敗,它會傳回 Status 列舉的其他元素之一。

言論

GraphicsPath 物件會將橢圓形儲存為四個連接的貝塞爾曲線序列。 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