次の方法で共有


Rectangle.Inflate メソッド (Int32, Int32)

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

Overloads Public Sub Inflate( _
   ByVal width As Integer, _   ByVal height As Integer _)
[C#]
public void Inflate(intwidth,intheight);
[C++]
public: void Inflate(intwidth,intheight);
[JScript]
public function Inflate(
   width : int,height : int);

パラメータ

  • width
    この Rectangle の水平方向の膨張量。
  • height
    この Rectangle の垂直方向の膨張量。

戻り値

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

解説

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

xy のいずれかが負の場合、 Rectangle 構造体は該当する方向が縮小されます。

使用例

[Visual Basic, C#] Rectangle 構造体を作成し、x 方向に 100 単位膨らませる例を次に示します。

 
Public Sub RectangleInflateTest3(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)
' Call Inflate.
rect.Inflate(50, 50)
' Draw the inflated rect to screen.
e.Graphics.DrawRectangle(Pens.Red, rect)
End Sub
        
[C#] 
public void RectangleInflateTest3(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);
// Call Inflate.
rect.Inflate(50, 50);
// 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 ファミリ, .NET Compact Framework - Windows CE .NET

参照

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