次の方法で共有


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

指定の Rectangle 構造体の膨らんだコピーを作成し返します。コピーは指定した量だけ膨らみます。元の Rectangle 構造体は変更されません。

Overloads Public Shared Function Inflate( _
   ByVal rect As Rectangle, _   ByVal x As Integer, _   ByVal y As Integer _) As Rectangle
[C#]
public static Rectangle Inflate(Rectanglerect,intx,inty);
[C++]
public: static Rectangle Inflate(Rectanglerect,intx,inty);
[JScript]
public static function Inflate(
   rect : Rectangle,x : int,y : int) : Rectangle;

パラメータ

  • rect
    最初の Rectangle 。この四角形は変更されません。
  • x
    この Rectangle の水平方向の膨張量。
  • y
    この Rectangle の垂直方向の膨張量。

戻り値

膨らませた Rectangle

解説

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

使用例

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

 
Public Sub RectangleInflateTest(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.
Dim rect2 As Rectangle = Rectangle.Inflate(rect, 50, 50)
' Draw the inflated rect to screen.
e.Graphics.DrawRectangle(Pens.Red, rect2)
End Sub
        
[C#] 
public void RectangleInflateTest(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.
Rectangle rect2 = Rectangle.Inflate(rect, 50, 50);
// Draw the inflated rect to screen.
e.Graphics.DrawRectangle(Pens.Red, rect2);
}
        

[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 オーバーロードの一覧