GraphicsPath.AddPie 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 경로에 원형 셰이프의 윤곽선을 추가합니다.
오버로드
AddPie(Rectangle, Single, Single) |
이 경로에 원형 셰이프의 윤곽선을 추가합니다. |
AddPie(Int32, Int32, Int32, Int32, Single, Single) |
이 경로에 원형 셰이프의 윤곽선을 추가합니다. |
AddPie(Single, Single, Single, Single, Single, Single) |
이 경로에 원형 셰이프의 윤곽선을 추가합니다. |
AddPie(Rectangle, Single, Single)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
이 경로에 원형 셰이프의 윤곽선을 추가합니다.
public:
void AddPie(System::Drawing::Rectangle rect, float startAngle, float sweepAngle);
public void AddPie (System.Drawing.Rectangle rect, float startAngle, float sweepAngle);
member this.AddPie : System.Drawing.Rectangle * single * single -> unit
Public Sub AddPie (rect As Rectangle, startAngle As Single, sweepAngle As Single)
매개 변수
- startAngle
- Single
x축에서 시계 방향으로 측정된 원형 섹션의 시작 각도입니다.
- sweepAngle
- Single
startAngle
시계 방향으로 측정된 startAngle
및 원형 섹션의 끝 사이의 각도입니다.
예제
예제는 AddPie(Int32, Int32, Int32, Int32, Single, Single)참조하세요.
설명
원형 도형은 줄임표의 부분 윤곽선과 부분 윤곽선의 끝점과 교차하는 두 개의 방사형 선으로 정의됩니다. 부분 윤곽선은 startAngle
(x축에서 시계 방향으로 측정됨)에서 시작하여 startAngle
+ sweepAngle
끝납니다.
적용 대상
AddPie(Int32, Int32, Int32, Int32, Single, Single)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
이 경로에 원형 셰이프의 윤곽선을 추가합니다.
public:
void AddPie(int x, int y, int width, int height, float startAngle, float sweepAngle);
public void AddPie (int x, int y, int width, int height, float startAngle, float sweepAngle);
member this.AddPie : int * int * int * int * single * single -> unit
Public Sub AddPie (x As Integer, y As Integer, width As Integer, height As Integer, startAngle As Single, sweepAngle As Single)
매개 변수
- x
- Int32
원형이 그려지는 타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 x 좌표입니다.
- y
- Int32
원형이 그려지는 타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 y 좌표입니다.
- width
- Int32
원형이 그려지는 줄임표를 정의하는 경계 사각형의 너비입니다.
- height
- Int32
원형이 그려지는 줄임표를 정의하는 경계 사각형의 높이입니다.
- startAngle
- Single
x축에서 시계 방향으로 측정된 원형 섹션의 시작 각도입니다.
- sweepAngle
- Single
startAngle
시계 방향으로 측정된 startAngle
및 원형 섹션의 끝 사이의 각도입니다.
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 OnPaint 이벤트 개체인 PaintEventArgse
필요합니다. 이 코드는 그래픽 경로를 만들고 원형 도형을 추가한 다음 화면에 경로를 그립니다.
private:
void AddPieExample( PaintEventArgs^ e )
{
// Create a pie slice of a circle using the AddPie method.
GraphicsPath^ myPath = gcnew GraphicsPath;
myPath->AddPie( 20, 20, 70, 70, -45, 90 );
// Draw the path to the screen.
Pen^ myPen = gcnew Pen( Color::Black,2.0f );
e->Graphics->DrawPath( myPen, myPath );
}
private void AddPieExample(PaintEventArgs e)
{
// Create a pie slice of a circle using the AddPie method.
GraphicsPath myPath = new GraphicsPath();
myPath.AddPie(20, 20, 70, 70, -45, 90);
// Draw the path to the screen.
Pen myPen = new Pen(Color.Black, 2);
e.Graphics.DrawPath(myPen, myPath);
}
Public Sub AddPieExample(ByVal e As PaintEventArgs)
' Create a pie slice of a circle using the AddPie method.
Dim myPath As New GraphicsPath
myPath.AddPie(20, 20, 70, 70, -45, 90)
' Draw the path to the screen.
Dim myPen As New Pen(Color.Black, 2)
e.Graphics.DrawPath(myPen, myPath)
End Sub
설명
원형 도형은 줄임표의 부분 윤곽선과 부분 윤곽선의 끝점과 교차하는 두 개의 방사형 선으로 정의됩니다. 부분 윤곽선은 startAngle
(x축에서 시계 방향으로 측정됨)에서 시작하여 startAngle
+ sweepAngle
끝납니다.
적용 대상
AddPie(Single, Single, Single, Single, Single, Single)
- Source:
- GraphicsPath.cs
- Source:
- GraphicsPath.cs
이 경로에 원형 셰이프의 윤곽선을 추가합니다.
public:
void AddPie(float x, float y, float width, float height, float startAngle, float sweepAngle);
public void AddPie (float x, float y, float width, float height, float startAngle, float sweepAngle);
member this.AddPie : single * single * single * single * single * single -> unit
Public Sub AddPie (x As Single, y As Single, width As Single, height As Single, startAngle As Single, sweepAngle As Single)
매개 변수
- x
- Single
원형이 그려지는 타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 x 좌표입니다.
- y
- Single
원형이 그려지는 타원을 정의하는 경계 사각형의 왼쪽 위 모퉁이의 y 좌표입니다.
- width
- Single
원형이 그려지는 줄임표를 정의하는 경계 사각형의 너비입니다.
- height
- Single
원형이 그려지는 줄임표를 정의하는 경계 사각형의 높이입니다.
- startAngle
- Single
x축에서 시계 방향으로 측정된 원형 섹션의 시작 각도입니다.
- sweepAngle
- Single
startAngle
시계 방향으로 측정된 startAngle
및 원형 섹션의 끝 사이의 각도입니다.
예제
예제는 AddPie(Int32, Int32, Int32, Int32, Single, Single)참조하세요.
설명
원형 도형은 줄임표의 부분 윤곽선과 부분 윤곽선의 끝점과 교차하는 두 개의 방사형 선으로 정의됩니다. 부분 윤곽선은 startAngle
(x축에서 시계 방향으로 측정됨)에서 시작하여 startAngle
+ sweepAngle
끝납니다.
적용 대상
.NET