GraphicsPath.Reverse 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 GraphicsPathPathPoints 배열의 점 순서를 반대로 바뀝니다.
public:
void Reverse();
public void Reverse ();
member this.Reverse : unit -> unit
Public Sub Reverse ()
예제
다음 코드 예제는 Windows Forms에서 사용하도록 설계되었으며 OnPaint 이벤트 개체인 PaintEventArgse
필요합니다. 코드는 다음 작업을 수행합니다.
경로를 만들고 경로에 여러 기본 형식을 추가합니다.
경로의 점 배열을 화면에 그립니다.
역방향 점 배열을 화면에 그립니다.
포인트의 두 번째 목록은 첫 번째 목록과 역순으로 표시됩니다.
void GraphicsPathReverseExample( PaintEventArgs^ e )
{
// Create a path and add a line, ellipse, and arc.
GraphicsPath^ myPath = gcnew GraphicsPath;
myPath->AddLine( Point(0,0), Point(100,100) );
myPath->AddEllipse( 100, 100, 200, 250 );
myPath->AddArc( 300, 250, 100, 100, 0, 90 );
// Draw the first set of points to the screen.
DrawPoints2( e, myPath->PathPoints, 20 );
// Call GraphicsPath.Reverse.
myPath->Reverse();
// Draw the reversed set of points to the screen.
DrawPoints2( e, myPath->PathPoints, 150 );
}
//End GraphicsPathReverseExample.
// A helper function GraphicsPathReverseExample is used to draw the
// points to the screen.
void DrawPoints2( PaintEventArgs^ e, array<PointF>^ pathPoints, int xOffset )
{
int y = 20;
System::Drawing::Font^ myFont = gcnew System::Drawing::Font( "Arial",8 );
for ( int i = 0; i < pathPoints->Length; i++ )
{
e->Graphics->DrawString( String::Concat( pathPoints[ i ].X, ", ", pathPoints[ i ].Y ), myFont, Brushes::Black, (float)xOffset, (float)y );
y += 20;
}
}
// End DrawPoints
public void GraphicsPathReverseExample(PaintEventArgs e)
{
// Create a path and add a line, ellipse, and arc.
GraphicsPath myPath = new GraphicsPath();
myPath.AddLine(new Point(0, 0), new Point(100, 100));
myPath.AddEllipse(100, 100, 200, 250);
myPath.AddArc(300, 250, 100, 100, 0, 90);
// Draw the first set of points to the screen.
DrawPoints2(e, myPath.PathPoints, 20);
// Call GraphicsPath.Reverse.
myPath.Reverse();
// Draw the reversed set of points to the screen.
DrawPoints2(e, myPath.PathPoints, 150);
}
//End GraphicsPathReverseExample.
// A helper function GraphicsPathReverseExample is used to draw the
// points to the screen.
public void DrawPoints2(PaintEventArgs e, PointF[] pathPoints, int xOffset)
{
int y = 20;
Font myFont = new Font("Arial", 8);
for(int i=0;i < pathPoints.Length; i++)
{
e.Graphics.DrawString(pathPoints[i].X.ToString() + ", " +
pathPoints[i].Y.ToString(),
myFont,
Brushes.Black,
xOffset,
y);
y += 20;
}
}
// End DrawPoints
Public Sub GraphicsPathReverseExample(ByVal e As PaintEventArgs)
' Create a path and add a line, ellipse, and arc.
Dim myPath As New GraphicsPath
myPath.AddLine(New Point(0, 0), New Point(100, 100))
myPath.AddEllipse(100, 100, 200, 250)
myPath.AddArc(300, 250, 100, 100, 0, 90)
' Draw the first set of points to the screen.
DrawPointsHelper2(e, myPath.PathPoints, 20)
' Call GraphicsPath.Reverse.
myPath.Reverse()
' Draw the reversed set of points to the screen.
DrawPointsHelper2(e, myPath.PathPoints, 150)
End Sub
' A helper function used by GraphicsPathReverseExample to draw points.
Public Sub DrawPointsHelper2(ByVal e As PaintEventArgs, _
ByVal pathPoints() As PointF, ByVal xOffset As Integer)
Dim y As Integer = 20
Dim myFont As New Font("Arial", 8)
Dim i As Integer
For i = 0 To pathPoints.Length - 1
e.Graphics.DrawString(pathPoints(i).X.ToString() + _
", " + pathPoints(i).Y.ToString(), myFont, Brushes.Black, _
xOffset, y)
y += 20
Next i
End Sub
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET