Graphics.DrawPath メソッド
GraphicsPath オブジェクトを描画します。
Public Sub DrawPath( _
ByVal pen As Pen, _ ByVal path As GraphicsPath _)
[C#]
public void DrawPath(Penpen,GraphicsPathpath);
[C++]
public: void DrawPath(Pen* pen,GraphicsPath* path);
[JScript]
public function DrawPath(
pen : Pen,path : GraphicsPath);
パラメータ
- pen
パスの色、幅、およびスタイルを決定する Pen オブジェクト。 - path
描画する GraphicsPath オブジェクト。
戻り値
このメソッドは値を返しません。
解説
グラフィック コンテキストの現在の変換が、描画前の GraphicsPath オブジェクトに適用されます。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- グラフィックス パス オブジェクトを作成し、楕円を追加します。
- 黒いペンを作成します。
- 画面にグラフィックス パスを描画します。
Public Sub DrawPathEllipse(e As PaintEventArgs)
' Create graphics path object and add ellipse.
Dim graphPath As New GraphicsPath()
graphPath.AddEllipse(0, 0, 200, 100)
' Create pen.
Dim blackPen As New Pen(Color.Black, 3)
' Draw graphics path to screen.
e.Graphics.DrawPath(blackPen, graphPath)
End Sub
[C#]
public void DrawPathEllipse(PaintEventArgs e)
{
// Create graphics path object and add ellipse.
GraphicsPath graphPath = new GraphicsPath();
graphPath.AddEllipse(0, 0, 200, 100);
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Draw graphics path to screen.
e.Graphics.DrawPath(blackPen, graphPath);
}
[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 ファミリ