GraphicsPath.AddEllipse 메서드

정의

타원을 현재 경로에 추가합니다.

오버로드

AddEllipse(Rectangle)

타원을 현재 경로에 추가합니다.

AddEllipse(RectangleF)

타원을 현재 경로에 추가합니다.

AddEllipse(Int32, Int32, Int32, Int32)

타원을 현재 경로에 추가합니다.

AddEllipse(Single, Single, Single, Single)

타원을 현재 경로에 추가합니다.

AddEllipse(Rectangle)

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

타원을 현재 경로에 추가합니다.

public:
 void AddEllipse(System::Drawing::Rectangle rect);
public void AddEllipse (System.Drawing.Rectangle rect);
member this.AddEllipse : System.Drawing.Rectangle -> unit
Public Sub AddEllipse (rect As Rectangle)

매개 변수

rect
Rectangle

타원을 정의하는 경계 사각형을 나타내는 Rectangle입니다.

예제

다음 코드 예제는 Windows Forms 사용하도록 설계되었으며 이벤트 개체인 이 OnPaint 필요합니다PaintEventArgse. 코드는 다음 작업을 수행합니다.

타원을 정의하는 경계 사각형을 만듭니다.

경로를 만들고 경로에 타원을 추가합니다.

화면의 경로를 그립니다.

private:
   void AddEllipseExample( PaintEventArgs^ e )
   {
      // Create a path and add an ellipse.
      Rectangle myEllipse = Rectangle(20,20,100,50);
      GraphicsPath^ myPath = gcnew GraphicsPath;
      myPath->AddEllipse( myEllipse );

      // Draw the path to the screen.
      Pen^ myPen = gcnew Pen( Color::Black,2.0f );
      e->Graphics->DrawPath( myPen, myPath );
   }
private void AddEllipseExample(PaintEventArgs e)
{
             
    // Create a path and add an ellipse.
    Rectangle myEllipse = new Rectangle(20, 20, 100, 50);
    GraphicsPath myPath = new GraphicsPath();
    myPath.AddEllipse(myEllipse);
             
    // Draw the path to the screen.
    Pen myPen = new Pen(Color.Black, 2);
    e.Graphics.DrawPath(myPen, myPath);
}
Public Sub AddEllipseExample(ByVal e As PaintEventArgs)

    ' Create a path and add an ellipse.
    Dim myEllipse As New Rectangle(20, 20, 100, 50)
    Dim myPath As New GraphicsPath
    myPath.AddEllipse(myEllipse)

    ' Draw the path to the screen.
    Dim myPen As New Pen(Color.Black, 2)
    e.Graphics.DrawPath(myPen, myPath)
End Sub

적용 대상

AddEllipse(RectangleF)

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

타원을 현재 경로에 추가합니다.

public:
 void AddEllipse(System::Drawing::RectangleF rect);
public void AddEllipse (System.Drawing.RectangleF rect);
member this.AddEllipse : System.Drawing.RectangleF -> unit
Public Sub AddEllipse (rect As RectangleF)

매개 변수

rect
RectangleF

타원을 정의하는 경계 사각형을 나타내는 RectangleF입니다.

예제

예제를 보려면 AddEllipse(Rectangle)를 참조하세요.

적용 대상

AddEllipse(Int32, Int32, Int32, Int32)

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

타원을 현재 경로에 추가합니다.

public:
 void AddEllipse(int x, int y, int width, int height);
public void AddEllipse (int x, int y, int width, int height);
member this.AddEllipse : int * int * int * int -> unit
Public Sub AddEllipse (x As Integer, y As Integer, width As Integer, height As Integer)

매개 변수

x
Int32

타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 X좌표입니다.

y
Int32

타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 Y좌표입니다.

width
Int32

타원을 정의하는 경계 사각형의 너비입니다.

height
Int32

타원을 정의하는 경계 사각형의 높이입니다.

예제

예제를 보려면 AddEllipse(Rectangle)를 참조하세요.

적용 대상

AddEllipse(Single, Single, Single, Single)

Source:
GraphicsPath.cs
Source:
GraphicsPath.cs
Source:
GraphicsPath.cs

타원을 현재 경로에 추가합니다.

public:
 void AddEllipse(float x, float y, float width, float height);
public void AddEllipse (float x, float y, float width, float height);
member this.AddEllipse : single * single * single * single -> unit
Public Sub AddEllipse (x As Single, y As Single, width As Single, height As Single)

매개 변수

x
Single

타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 X좌표입니다.

y
Single

타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 Y좌표입니다.

width
Single

타원을 정의하는 경계 사각형의 너비입니다.

height
Single

타원을 정의하는 경계 사각형의 높이입니다.

예제

예제를 보려면 AddEllipse(Rectangle)를 참조하세요.

적용 대상