次の方法で共有


Graphics.FillRegion メソッド

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

Public Sub FillRegion( _
   ByVal brush As Brush, _   ByVal region As Region _)
[C#]
public void FillRegion(Brushbrush,Regionregion);
[C++]
public: void FillRegion(Brush* brush,Region* region);
[JScript]
public function FillRegion(
   brush : Brush,region : Region);

パラメータ

  • brush
    塗りつぶしの特性を決定する Brush オブジェクト。
  • region
    塗りつぶす領域を表す Region オブジェクト。

戻り値

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

解説

Region オブジェクトは、四角形とパスで構成されます。この領域が閉じられていない場合は、領域を閉じるために最後の点と最初の点を結ぶ線分が追加されます。

使用例

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

  • 青いソリッド ブラシを作成します。
  • 四角形を作成します。
  • 四角形領域を作成します。
  • 画面上の四角形領域を塗りつぶします。
 
Public Sub FillRegionRectangle(e As PaintEventArgs)
' Create solid brush.
Dim blueBrush As New SolidBrush(Color.Blue)
' Create rectangle for region.
Dim fillRect As New Rectangle(100, 100, 200, 200)
' Create region for fill.
Dim fillRegion As New [Region](fillRect)
' Fill region to screen.
e.Graphics.FillRegion(blueBrush, fillRegion)
End Sub
        
[C#] 
public void FillRegionRectangle(PaintEventArgs e)
{
// Create solid brush.
SolidBrush blueBrush = new SolidBrush(Color.Blue);
// Create rectangle for region.
Rectangle fillRect = new Rectangle(100, 100, 200, 200);
// Create region for fill.
Region fillRegion = new Region(fillRect);
// Fill region to screen.
e.Graphics.FillRegion(blueBrush, fillRegion);
}
        

[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 ファミリ, .NET Compact Framework - Windows CE .NET

参照

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