Graphics::FillEllipse(constBrush*,constRectF&) 메서드(gdiplusgraphics.h)
Graphics::FillEllipse 메서드는 브러시를 사용하여 사각형으로 지정된 타원의 내부를 채웁니다.
구문
Status FillEllipse(
const Brush *brush,
const RectF & rect
);
매개 변수
brush
타원의 내부를 그리는 데 사용되는 Brush 개체에 대한 포인터입니다.
rect
타원의 경계를 지정하는 사각형에 대한 참조입니다.
반환 값
메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.
메서드가 실패하면 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 |