다음을 통해 공유


Graphics::D rawEllipse(constPen*,constRectF&) 메서드(gdiplusgraphics.h)

Graphics::D rawEllipse 메서드는 타원을 그립니다.

구문

Status DrawEllipse(
  const Pen     *pen,
  const RectF & rect
);

매개 변수

pen

타원을 그리는 데 사용되는 펜에 대한 포인터입니다.

rect

타원을 경계로 하는 사각형에 대한 참조입니다.

반환 값

메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.

메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.

설명

예제

다음 예제에서는 타원을 그립니다.

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

   // Create a Pen object.
   Pen bluePen(Color(255, 0, 0, 255));

   // Create a Rect object that bounds the ellipse.
   RectF ellipseRect(0.0f, 0.0f, 200.0f, 100.0f);

   // Draw the ellipse.
   graphics.DrawEllipse(&bluePen, ellipseRect);
}

요구 사항

   
머리글 gdiplusgraphics.h

추가 정보

그래픽

FillEllipse 메서드

RectF

타원 및 원호