Graphics::FillEllipse (constBrush*,constRectF&) 方法 (gdiplusgraphics.h)
Graphics::FillEllipse 方法會使用筆刷來填滿矩形所指定的橢圓形內部。
語法
Status FillEllipse(
const Brush *brush,
const RectF & rect
);
參數
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 |