次の方法で共有


Graphics.FillPath メソッド

GraphicsPath オブジェクトの内部を塗りつぶします。

Public Sub FillPath( _
   ByVal brush As Brush, _   ByVal path As GraphicsPath _)
[C#]
public void FillPath(Brushbrush,GraphicsPathpath);
[C++]
public: void FillPath(Brush* brush,GraphicsPath* path);
[JScript]
public function FillPath(
   brush : Brush,path : GraphicsPath);

パラメータ

  • brush
    塗りつぶしの特性を決定する Brush オブジェクト。
  • path
    塗りつぶし対象のパスを表す GraphicsPath オブジェクト。

戻り値

このメソッドは値を返しません。

解説

GraphicsPath オブジェクトは、直線および曲線の一連の線分で構成されます。path パラメータによって表されるパスが閉じられていない場合は、パスを閉じるために最後の点と最初の点を結ぶ線分が追加されます。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • 赤いソリッド ブラシを作成します。
  • グラフィックス パス オブジェクトを作成します。
  • グラフィックス パスに楕円を追加します。
  • 画面のパスを塗りつぶします。
 
Public Sub FillPathEllipse(e As PaintEventArgs)
' Create solid brush.
Dim redBrush As New SolidBrush(Color.Red)
' Create graphics path object and add ellipse.
Dim graphPath As New GraphicsPath()
graphPath.AddEllipse(0, 0, 200, 100)
' Fill graphics path to screen.
e.Graphics.FillPath(redBrush, graphPath)
End Sub
        
[C#] 
public void FillPathEllipse(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.Red);
// Create graphics path object and add ellipse.
GraphicsPath graphPath = new GraphicsPath();
graphPath.AddEllipse(0, 0, 200, 100);
// Fill graphics path to screen.
e.Graphics.FillPath(redBrush, 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 ファミリ

参照

Graphics クラス | Graphics メンバ | System.Drawing 名前空間