Graphics::FillRectangles(constBrush*,constRectF*,INT) メソッド (gdiplusgraphics.h)
Graphics::FillRectangles メソッドは、ブラシを使用して四角形のシーケンスの内部を塗りつぶします。
構文
Status FillRectangles(
const Brush *brush,
const RectF *rects,
INT count
);
パラメーター
brush
各四角形の内部を塗りつぶすために使用される ブラシ へのポインター。
rects
塗りつぶす四角形の配列へのポインター。
count
rects 配列内の四角形の数を指定する整数。
戻り値
メソッドが成功した場合は、Status 列挙の要素である Ok を返します。
メソッドが失敗した場合は、 Status 列挙体の他の要素のいずれかを返します。
解説
例
次の例では、四角形のシーケンスを塗りつぶします。
VOID Example_FillRectangles2(HDC hdc)
{
Graphics graphics(hdc);
// Create a SolidBrush object.
SolidBrush blackBrush(Color(255, 0, 0, 0));
// Create an array of RectF objects.
RectF rect1(0.0f, 0.0f, 100.0f, 200.0f);
RectF rect2(100.5f, 200.5f, 200.5f, 50.5f);
RectF rect3(300.8f, 0.8f, 50.8f, 150.8f);
RectF rects[3] = {rect1, rect2, rect3};
// Fill the rectangles.
graphics.FillRectangles(&blackBrush, rects, 3);
}
要件
要件 | 値 |
---|---|
Header | gdiplusgraphics.h |