GraphicsPath::AddEllipse (constRect&) 方法 (gdipluspath.h)
GraphicsPath::AddEllipse 方法會將省略號新增至此路徑。
語法
Status AddEllipse(
[in, ref] const Rect & rect
);
參數
[in, ref] rect
類型: const Rect
系結橢圓形的矩形參考。
傳回值
類型: 狀態
如果方法成功,它會傳回Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其他其中一個專案。
備註
GraphicsPath 物件會將橢圓形儲存為四個連接的 Bézier 曲線序列。 GraphicsPath 物件不會儲存橢圓周框的左上角、寬度和高度。
範例
下列範例會建立 GraphicsPath 物件 路徑、將省略號新增至 路徑,然後繪製 路徑。
VOID Example_AddEllipse(HDC hdc)
{
Graphics graphics(hdc);
Rect rect(20, 20, 200, 100);
GraphicsPath path;
path.AddEllipse(rect);
// Draw the path.
Pen pen(Color(255, 255, 0, 0));
graphics.DrawPath(&pen, &path);
}
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows XP、Windows 2000 Professional [僅限桌面應用程式] |
最低支援的伺服器 | Windows 2000 Server [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | gdipluspath.h (包含 Gdiplus.h) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |