GraphicsPath.Reverse メソッド
GraphicsPath オブジェクトの PathPoints 配列内の点の順序を反転します。
Public Sub Reverse()
[C#]
public void Reverse();
[C++]
public: void Reverse();
[JScript]
public function Reverse();
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 OnPaint イベントのオブジェクトである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- パスを作成し、そのパスに複数のプリミティブを追加します。
- 画面にパスの点配列を描画します。
- 画面に反転された点配列を描画します。
[Visual Basic, C#] 2 番目の点のリストでは、順序が最初のリストと逆になります。
Public Sub GraphicsPathReverseExample(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.
DrawPointsHelper(e, myPath.PathPoints, 20)
' Call GraphicsPath.Reverse.
myPath.Reverse()
' Draw the reversed set of points to the screen.
DrawPointsHelper(e, myPath.PathPoints, 150)
End Sub
' A helper function used by GraphicsPathReverseExample to draw points.
Public Sub DrawPointsHelper(e As PaintEventArgs, _
pathPoints() As PointF, 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
[C#]
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.
DrawPoints(e, myPath.PathPoints, 20);
// Call GraphicsPath.Reverse.
myPath.Reverse();
// Draw the reversed set of points to the screen.
DrawPoints(e, myPath.PathPoints, 150);
}//End GraphicsPathReverseExample.
// A helper function GraphicsPathReverseExample is used to draw the
// points to the screen.
public void DrawPoints(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
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
GraphicsPath クラス | GraphicsPath メンバ | System.Drawing.Drawing2D 名前空間