GraphicsPath::AddPolygon(constPointF*,INT) メソッド (gdipluspath.h)
GraphicsPath::AddPolygon メソッドは、このパスに多角形を追加します。
構文
Status AddPolygon(
const PointF *points,
INT count
);
パラメーター
points
多角形の頂点を指定するポイントの配列へのポインター。
count
ポイント配列内の要素の数を指定する整数。
戻り値
の種類:状態
メソッドが成功した場合は、ok を返します。これは、Status 列挙体の要素です。
メソッドが失敗した場合は、Status 列挙体の他の要素のいずれかを返します。
備考
GraphicsPath::AddPolygon メソッドは、AddLines メソッドに似ています。
違いは、多角形は本質的に閉じた図形ですが、GraphicsPath::CloseFigure
例
次の例では、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 |
関連項目
AddPolygon メソッド を
領域 でのクリッピングの
パス の構築と描画の
パス グラデーション の作成の