GraphicsPath::AddPolygon(constPointF*,INT) 方法 (gdipluspath.h)
GraphicsPath::AddPolygon 方法會將多邊形新增至此路徑。
語法
Status AddPolygon(
const PointF *points,
INT count
);
參數
points
指定多邊形頂點之點陣列的指標。
count
整數,指定點陣列中的項目數目。
傳回值
類型:狀態
如果方法成功,它會傳回Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其他元素之一。
言論
例子
下列範例會建立 GraphicsPath 對象路徑、將多邊形新增至路徑,然後繪製路徑。
VOID Example_AddPolygon(HDC hdc)
{
Graphics graphics(hdc);
PointF pts[] = {PointF(20.0f, 20.0f),
PointF(120.0f, 20.0f),
PointF(120.0f, 70.0f)};
GraphicsPath path;
path.AddPolygon(pts, 3);
// Draw the path.
Pen pen(Color(255, 255, 0, 0));
graphics.DrawPath(&pen, &path);
}
要求
要求 | 價值 |
---|---|
標頭 | gdipluspath.h |
另請參閱
使用區域 進行裁剪