Graphics::D rawLines(constPen*,constPoint*,INT) メソッド (gdiplusgraphics.h)

Graphics::D rawLines メソッドは、接続された一連の線を描画します。

構文

Status DrawLines(
  [in] const Pen   *pen,
  [in] const Point *points,
  [in] INT         count
);

パラメーター

[in] pen

種類: const Pen*

線の描画に使用されるペンへのポインター。

[in] points

型: const Point*

線の始点と終点を指定する Point オブジェクトの配列へのポインター。

[in] count

型: INT

ポイント配列内の要素の数を指定する整数。

戻り値

種類: 状態

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

メソッドが失敗した場合は、 Status 列挙体の他の要素のいずれかを返します。

解説

各行には、開始点と終了点が必要です。 各行の終了点は、次の行の開始点です。

次の例では、接続された線のシーケンスを描画します。


VOID Example_DrawLines(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 lines to draw.
   Point point1(10, 10);
   Point point2(10, 100);
   Point point3(200, 50);
   Point point4(250, 300);

   Point points[4] = {point1, point2, point3, point4};
   Point* pPoints = points;

   // Draw the lines.
   graphics.DrawLines(&blackPen, pPoints, 4);
}

要件

   
サポートされている最小のクライアント Windows XP、Windows 2000 Professional [デスクトップ アプリのみ]
サポートされている最小のサーバー Windows 2000 Server [デスクトップ アプリのみ]
対象プラットフォーム Windows
ヘッダー gdiplusgraphics.h (Gdiplus.h を含む)
Library Gdiplus.lib
[DLL] Gdiplus.dll

関連項目

DrawLine メソッド

グラフィックス

ペン、直線、および四角形

Point

ペンを使用した直線と四角形の描画