Graphics::FillEllipse (constBrush*,constRectF&) 方法 (gdiplusgraphics.h)
Graphics::FillEllipse 方法使用画笔填充矩形指定的椭圆的内部。
语法
Status FillEllipse(
const Brush *brush,
const RectF & rect
);
参数
brush
指向 Brush 对象的指针 ,该对象用于绘制椭圆的内部。
rect
对指定椭圆边界的矩形的引用。
返回值
如果方法成功,则返回 Ok,这是 Status 枚举的元素。
如果 方法失败,它将返回 Status 枚举的其他元素之一。
注解
示例
以下示例填充由边界矩形定义的椭圆。
VOID Example_FillEllipse2(HDC hdc)
{
Graphics graphics(hdc);
// Create a SolidBrush object.
SolidBrush blackBrush(Color(255, 0, 0, 0));
// Create the RectF object that defines the ellipse.
RectF ellipseRect(0.0f, 0.6f, 200.8f, 100.9f);
// Fill the ellipse.
graphics.FillEllipse(&blackBrush, ellipseRect);
}
要求
标头 | gdiplusgraphics.h |