次の方法で共有


Rectangle.Inflate メソッド (Size)

この Rectangle を指定の量だけ膨らませます。

Overloads Public Sub Inflate( _
   ByVal size As Size _)
[C#]
public void Inflate(Sizesize);
[C++]
public: void Inflate(Sizesize);
[JScript]
public function Inflate(
   size : Size);

パラメータ

  • size
    この四角形の膨張量。

戻り値

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

解説

このメソッドは、コピーではなくこの四角形を膨らませます。軸に沿った膨張には、2 つの方向 (マイナスの方向とプラスの方向) があります。たとえば、50 × 50 の四角形を x 軸方向に 50 膨らませると、長さが 150 単位 (元の 50、負の方向に 50、正の方向に 50) の四角形になります。四角形の幾何学中心は元のままです。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードでは、 Rectangle を作成し、両軸に 50 単位ずつ膨らませます。膨らませる前 (黒) と膨らませた後 (赤) の四角形が画面に描画されます。

 
Public Sub RectangleInflateTest2(e As PaintEventArgs)
' Create a rectangle.
Dim rect As New Rectangle(100, 100, 50, 50)
' Draw the uninflated rect to screen.
e.Graphics.DrawRectangle(Pens.Black, rect)
' Set up the inflate size.
Dim inflateSize As New Size(50, 50)
' Call Inflate.
rect.Inflate(inflateSize)
' Draw the inflated rect to screen.
e.Graphics.DrawRectangle(Pens.Red, rect)
End Sub
        
[C#] 
public void RectangleInflateTest2(PaintEventArgs e)
{
// Create a rectangle.
Rectangle rect = new Rectangle(100, 100, 50, 50);
// Draw the uninflated rect to screen.
e.Graphics.DrawRectangle(Pens.Black, rect);
// Set up the inflate size.
Size inflateSize = new Size(50, 50);
// Call Inflate.
rect.Inflate(inflateSize);
// Draw the inflated rect to screen.
e.Graphics.DrawRectangle(Pens.Red, rect);
}
        

[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 ファミリ

参照

Rectangle 構造体 | Rectangle メンバ | System.Drawing 名前空間 | Rectangle.Inflate オーバーロードの一覧