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*

points 配列内の要素の数を指定する整数。

戻り値

種類: 状態

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

メソッドが失敗した場合は、 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 を含む)
Library Gdiplus.lib
[DLL] Gdiplus.dll

関連項目

FillPolygon メソッド

グラフィックス

Point

多角形