Graphics::D rawRectangle (constPen*,constRectF&) 方法 (gdiplusgraphics.h)
Graphics::D rawRectangle 方法绘制矩形。
语法
Status DrawRectangle(
const Pen *pen,
const RectF & rect
);
参数
pen
指向用于绘制矩形的 笔 的指针。
rect
对要绘制的矩形的引用。
返回值
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
示例
以下示例绘制一个矩形。
VOID Example_DrawRectangle2(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create a RectF object.
RectF rect(0.0f, 0.0f, 200.0f, 200.0f);
// Draw rect.
graphics.DrawRectangle(&blackPen, rect);
}
要求
标头 | gdiplusgraphics.h |