次の方法で共有


Graphics.ResetClip メソッド

この Graphics オブジェクトのクリップ領域を無制限領域にリセットします。

Public Sub ResetClip()
[C#]
public void ResetClip();
[C++]
public: void ResetClip();
[JScript]
public function ResetClip();

戻り値

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

解説

Graphics オブジェクトのクリッピング領域が無制限の場合、この Graphics オブジェクトによって描画される項目はクリップされません。

使用例

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

  • 左上隅が (0, 0) に位置する四角形を作成し、この四角形にクリッピング領域を設定します。
  • 左上隅が (100, 100) に位置する 2 つ目の四角形を作成し、この四角形と現在のクリッピング領域 (最初の四角形) との交差部分にクリッピング領域を設定します。
  • 青いソリッド ブラシで、前の 2 つの四角形を含む大きな四角形を塗りつぶします。
  • クリッピング領域を無制限にリセットします。
  • 2 つのクリッピング領域の周りに四角形を描画します。最初のクリッピング四角形には黒いペンを、2 つ目のクリッピング領域には赤いペンを使用します。

[Visual Basic, C#] 2 つの四角形の交差部分だけが青く塗りつぶされます。

 
Public Sub IntersectClipRectangleF(e As PaintEventArgs)
' Set clipping region.
Dim clipRect As New Rectangle(0, 0, 200, 200)
e.Graphics.SetClip(clipRect)
' Update clipping region to intersection of
' existing region with specified rectangle.
Dim intersectRectF As New RectangleF(100F, 100F, 200F, 200F)
e.Graphics.IntersectClip(intersectRectF)
' Fill rectangle to demonstrate effective clipping region.
e.Graphics.FillRectangle(New SolidBrush(Color.Blue), 0, 0, _
500, 500)
' Reset clipping region to infinite.
e.Graphics.ResetClip()
' Draw clipRect and intersectRect to screen.
e.Graphics.DrawRectangle(New Pen(Color.Black), clipRect)
e.Graphics.DrawRectangle(New Pen(Color.Red), _
Rectangle.Round(intersectRectF))
End Sub
        
[C#] 
public void IntersectClipRectangleF(PaintEventArgs e)
{
// Set clipping region.
Rectangle clipRect = new Rectangle(0, 0, 200, 200);
e.Graphics.SetClip(clipRect);
// Update clipping region to intersection of existing region with new rectangle.
RectangleF intersectRectF = new RectangleF(100.0F, 100.0F, 200.0F, 200.0F);
e.Graphics.IntersectClip(intersectRectF);
// Fill rectangle to demonstrate effective clipping region.
e.Graphics.FillRectangle(new SolidBrush(Color.Blue), 0, 0, 500, 500);
// Reset clipping region to infinite.
e.Graphics.ResetClip();
// Draw clipRect and intersectRect to screen.
e.Graphics.DrawRectangle(new Pen(Color.Black), clipRect);
e.Graphics.DrawRectangle(new Pen(Color.Red), Rectangle.Round(intersectRectF));
}
        

[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 名前空間