SimpleShape.SetBounds メソッド
更新 : 2007 年 11 月
図形の境界を指定した位置とサイズに設定します。
名前空間 : Microsoft.VisualBasic.PowerPacks
アセンブリ : Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
Public Sub SetBounds ( _
x As Integer, _
y As Integer, _
width As Integer, _
height As Integer _
)
'使用
Dim instance As SimpleShape
Dim x As Integer
Dim y As Integer
Dim width As Integer
Dim height As Integer
instance.SetBounds(x, y, width, height)
public void SetBounds(
int x,
int y,
int width,
int height
)
public:
void SetBounds(
int x,
int y,
int width,
int height
)
public function SetBounds(
x : int,
y : int,
width : int,
height : int
)
パラメータ
x
型 : System.Int32図形の新しい Left プロパティ値。
y
型 : System.Int32図形の新しい Top プロパティ値。
width
型 : System.Int32図形の新しい Width プロパティ値。
height
型 : System.Int32図形の新しい Height プロパティ値。
解説
SetBounds メソッドを使用すると、1 つのステートメントで図形のサイズと位置を変更できます。
例
SetBounds メソッドを使用して図形のサイズと位置を変更する方法を次の例に示します。具体的には、図形はフォームの左上隅に移動され、正方形に変更されます。この例では、RectangleShape1 という名前の RectangleShape コントロールがフォームに配置されている必要があります。
Private Sub RectangleShape1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles RectangleShape1.Click
' Change the Bounds property.
RectangleShape1.SetBounds(0, 0, 100, 100)
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
// Change the Bounds property.
rectangleShape1.SetBounds(0, 0, 100, 100);
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
ライン コントロールとシェイプ コントロールの概要 (Visual Studio)
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)
How to: Draw Shapes with the OvalShape and RectangleShape Controls