Graphics.ExcludeClip メソッド
Rectangle 構造体で指定された領域が除外されるよう、この Graphics オブジェクトのクリップ領域を更新します。
オーバーロードの一覧
Rectangle 構造体で指定された領域が除外されるよう、この Graphics オブジェクトのクリップ領域を更新します。
[Visual Basic] Overloads Public Sub ExcludeClip(Rectangle)
[JScript] public function ExcludeClip(Rectangle);
Region オブジェクトで指定された領域が除外されるように、この Graphics オブジェクトのクリップ領域を更新します。
[Visual Basic] Overloads Public Sub ExcludeClip(Region)
[JScript] public function ExcludeClip(Region);
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- 左上隅が座標 (100, 100) に位置する 100 ピクセル × 100 ピクセルの四角形を作成します。
- 四角形が除外されるようにクリッピング領域を設定します。
- 左上隅が座標 (0, 0) に位置する 300 ピクセル × 300 ピクセルの四角形を青いソリッド ブラシで塗りつぶします。
[Visual Basic, C#] 右下隅の方の正方形領域がない青の四角形が生成されます。
[Visual Basic, C#] メモ ここでは、ExcludeClip のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Public Sub ExcludeClipRegion(e As PaintEventArgs)
' Create rectangle for exclusion.
Dim excludeRect As New Rectangle(100, 100, 200, 200)
' Set clipping region to exclude rectangle.
e.Graphics.ExcludeClip(excludeRect)
' Fill large rectangle to show clipping region.
e.Graphics.FillRectangle(New SolidBrush(Color.Blue), 0, 0, _
300, 300)
End Sub
[C#]
public void ExcludeClipRegion(PaintEventArgs e)
{
// Create rectangle for exclusion.
Rectangle excludeRect = new Rectangle(100, 100, 200, 200);
// Set clipping region to exclude rectangle.
e.Graphics.ExcludeClip(excludeRect);
// Fill large rectangle to show clipping region.
e.Graphics.FillRectangle(new SolidBrush(Color.Blue), 0, 0, 300, 300);
}
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。