Graphics.FillEllipse 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
한 쌍의 좌표, 너비 및 높이로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다.
오버로드
FillEllipse(Brush, Rectangle) |
Rectangle 구조체로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다. |
FillEllipse(Brush, RectangleF) |
RectangleF 구조체로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다. |
FillEllipse(Brush, Int32, Int32, Int32, Int32) |
한 쌍의 좌표, 너비 및 높이로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다. |
FillEllipse(Brush, Single, Single, Single, Single) |
한 쌍의 좌표, 너비 및 높이로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다. |
FillEllipse(Brush, Rectangle)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
Rectangle 구조체로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다.
public:
void FillEllipse(System::Drawing::Brush ^ brush, System::Drawing::Rectangle rect);
public void FillEllipse (System.Drawing.Brush brush, System.Drawing.Rectangle rect);
member this.FillEllipse : System.Drawing.Brush * System.Drawing.Rectangle -> unit
Public Sub FillEllipse (brush As Brush, rect As Rectangle)
매개 변수
예외
brush
null
.
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse
필요합니다. 코드는 다음 작업을 수행합니다.
단색 빨간색 브러시를 만듭니다.
줄임표를 경계로 하는 사각형을 만듭니다.
화면의 줄임표를 채웁니다.
public:
void FillEllipseRectangle( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create rectangle for ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
Rectangle rect = Rectangle(x,y,width,height);
// Fill ellipse on screen.
e->Graphics->FillEllipse( redBrush, rect );
}
public void FillEllipseRectangle(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create rectangle for ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
Rectangle rect = new Rectangle(x, y, width, height);
// Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect);
}
Public Sub FillEllipseRectangle(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create rectangle for ellipse.
Dim x As Integer = 0
Dim y As Integer = 0
Dim width As Integer = 200
Dim height As Integer = 100
Dim rect As New Rectangle(x, y, width, height)
' Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect)
End Sub
설명
이 메서드는 줄임표의 내부를 Brush채웁니다. 줄임표는 rect
매개 변수가 나타내는 경계 사각형으로 정의됩니다.
적용 대상
FillEllipse(Brush, RectangleF)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
RectangleF 구조체로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다.
public:
void FillEllipse(System::Drawing::Brush ^ brush, System::Drawing::RectangleF rect);
public void FillEllipse (System.Drawing.Brush brush, System.Drawing.RectangleF rect);
member this.FillEllipse : System.Drawing.Brush * System.Drawing.RectangleF -> unit
Public Sub FillEllipse (brush As Brush, rect As RectangleF)
매개 변수
- rect
- RectangleF
줄임표를 정의하는 경계 사각형을 나타내는 RectangleF 구조체입니다.
예외
brush
null
.
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse
필요합니다. 코드는 다음 작업을 수행합니다.
단색 빨간색 브러시를 만듭니다.
줄임표를 경계로 하는 사각형을 만듭니다.
화면의 줄임표를 채웁니다.
public:
void FillEllipseRectangleF( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create rectangle for ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
RectangleF rect = RectangleF(x,y,width,height);
// Fill ellipse on screen.
e->Graphics->FillEllipse( redBrush, rect );
}
public void FillEllipseRectangleF(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create rectangle for ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
RectangleF rect = new RectangleF(x, y, width, height);
// Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect);
}
Public Sub FillEllipseRectangleF(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create rectangle for ellipse.
Dim x As Single = 0.0F
Dim y As Single = 0.0F
Dim width As Single = 200.0F
Dim height As Single = 100.0F
Dim rect As New RectangleF(x, y, width, height)
' Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, rect)
End Sub
설명
이 메서드는 줄임표의 내부를 Brush채웁니다. 줄임표는 rect
매개 변수가 나타내는 경계 사각형으로 정의됩니다.
적용 대상
FillEllipse(Brush, Int32, Int32, Int32, Int32)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
한 쌍의 좌표, 너비 및 높이로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다.
public:
void FillEllipse(System::Drawing::Brush ^ brush, int x, int y, int width, int height);
public void FillEllipse (System.Drawing.Brush brush, int x, int y, int width, int height);
member this.FillEllipse : System.Drawing.Brush * int * int * int * int -> unit
Public Sub FillEllipse (brush As Brush, x As Integer, y As Integer, width As Integer, height As Integer)
매개 변수
- x
- Int32
줄임표를 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 x 좌표입니다.
- y
- Int32
타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 y 좌표입니다.
- width
- Int32
줄임표를 정의하는 경계 사각형의 너비입니다.
- height
- Int32
줄임표를 정의하는 경계 사각형의 높이입니다.
예외
brush
null
.
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse
필요합니다. 코드는 다음 작업을 수행합니다.
단색 빨간색 브러시를 만듭니다.
타원을 경계로 하는 사각형의 위치와 크기를 만듭니다.
화면의 줄임표를 채웁니다.
public:
void FillEllipseInt( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create location and size of ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
// Fill ellipse on screen.
e->Graphics->FillEllipse( redBrush, x, y, width, height );
}
public void FillEllipseInt(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create location and size of ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
// Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, x, y, width, height);
}
Public Sub FillEllipseInt(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create location and size of ellipse.
Dim x As Integer = 0
Dim y As Integer = 0
Dim width As Integer = 200
Dim height As Integer = 100
' Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, x, y, width, height)
End Sub
설명
이 메서드는 줄임표의 내부를 Brush채웁니다. 줄임표는 x
, y
, width
및 height
매개 변수로 표현되는 경계 사각형으로 정의됩니다.
적용 대상
FillEllipse(Brush, Single, Single, Single, Single)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
한 쌍의 좌표, 너비 및 높이로 지정된 경계 사각형으로 정의된 타원의 내부를 채웁니다.
public:
void FillEllipse(System::Drawing::Brush ^ brush, float x, float y, float width, float height);
public void FillEllipse (System.Drawing.Brush brush, float x, float y, float width, float height);
member this.FillEllipse : System.Drawing.Brush * single * single * single * single -> unit
Public Sub FillEllipse (brush As Brush, x As Single, y As Single, width As Single, height As Single)
매개 변수
- x
- Single
줄임표를 정의하는 경계 사각형의 왼쪽 위 모퉁이에 대한 x 좌표입니다.
- y
- Single
타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 y 좌표입니다.
- width
- Single
줄임표를 정의하는 경계 사각형의 너비입니다.
- height
- Single
줄임표를 정의하는 경계 사각형의 높이입니다.
예외
brush
null
.
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 Paint 이벤트 처리기의 매개 변수인 PaintEventArgse
필요합니다. 코드는 다음 작업을 수행합니다.
단색 빨간색 브러시를 만듭니다.
타원을 경계로 하는 사각형의 위치와 크기를 만듭니다.
화면의 줄임표를 채웁니다.
public:
void FillEllipseFloat( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );
// Create location and size of ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
// Fill ellipse on screen.
e->Graphics->FillEllipse( redBrush, x, y, width, height );
}
public void FillEllipseFloat(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create location and size of ellipse.
float x = 0.0F;
float y = 0.0F;
float width = 200.0F;
float height = 100.0F;
// Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, x, y, width, height);
}
Public Sub FillEllipseFloat(ByVal e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create location and size of ellipse.
Dim x As Single = 0.0F
Dim y As Single = 0.0F
Dim width As Single = 200.0F
Dim height As Single = 100.0F
' Fill ellipse on screen.
e.Graphics.FillEllipse(redBrush, x, y, width, height)
End Sub
설명
이 메서드는 줄임표의 내부를 Brush채웁니다. 줄임표는 x
, y
, width
및 height
매개 변수로 표현되는 경계 사각형으로 정의됩니다.
적용 대상
.NET