Graphics::FillRectangle(constBrush*,constRectF&) メソッド (gdiplusgraphics.h)

Graphics::FillRectangle メソッドは、ブラシを使用して四角形の内部を塗りつぶします。

構文

Status FillRectangle(
  const Brush   *brush,
  const RectF & rect
);

パラメーター

brush

四角形の内部を描画するために使用される ブラシ へのポインター。

rect

塗りつぶす四角形への参照。

戻り値

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

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

解説

VOID Example_FillRectangle2(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a SolidBrush object.
   SolidBrush blackBrush(Color(255, 0, 0, 0));

   // Create a RectF object.
   RectF fillRect(1.0f, 2.5f, 100.3f, 100.9f);

   // Fill the rectangle.
   graphics.FillRectangle(&blackBrush, fillRect);
}

要件

要件
Header gdiplusgraphics.h

こちらもご覧ください

グラフィックス

Color

Rect

StringFormat