Graphics::D rawPolygon (constPen*,constPoint*,INT) 方法 (gdiplusgraphics.h)
Graphics::D rawPolygon方法會繪製多邊形。
語法
Status DrawPolygon(
[in] const Pen *pen,
[in] const Point *points,
[in] INT count
);
參數
[in] pen
類型:const Pen*
用來繪製多邊形的畫筆指標。
[in] points
類型:const Point*
Point物件的陣列指標,指定多邊形的頂點。
[in] count
類型: INT*
指定 點 陣列中專案數的整數。
傳回值
類型: 狀態
如果方法成功,它會傳回 Ok,這是 Status 列舉的元素。
如果方法失敗,它會傳回 Status 列舉的其他其中一個專案。
備註
如果 點 陣列中的第一個和最後一個座標不相同,則會在兩者之間繪製線條以關閉多邊形。
範例
下列範例會繪製由點陣列定義的多邊形。
VOID Example_DrawPolygon(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create an array of Point objects that define the polygon.
Point point1(100, 100);
Point point2(200, 130);
Point point3(150, 200);
Point point4(50, 200);
Point point5(0, 130);
Point points[5] = {point1, point2, point3, point4, point5};
Point* pPoints = points;
// Draw the polygon.
graphics.DrawPolygon(&blackPen, pPoints, 5);
}
需求
最低支援的用戶端 | Windows XP、Windows 2000 Professional [僅限桌面應用程式] |
最低支援的伺服器 | Windows 2000 Server [僅限桌面應用程式] |
目標平台 | Windows |
標頭 | gdiplusgraphics.h (包含 Gdiplus.h) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |