SimpleShape.Bounds プロパティ
親コントロールに関連するピクセルの図形のサイズと位置を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(False)> _
Public Overridable Property Bounds As Rectangle
[BrowsableAttribute(false)]
public virtual Rectangle Bounds { get; set; }
[BrowsableAttribute(false)]
public:
virtual property Rectangle Bounds {
Rectangle get ();
void set (Rectangle value);
}
[<BrowsableAttribute(false)>]
abstract Bounds : Rectangle with get, set
[<BrowsableAttribute(false)>]
override Bounds : Rectangle with get, set
function get Bounds () : Rectangle
function set Bounds (value : Rectangle)
プロパティ値
型 : System.Drawing.Rectangle
ピクセルの Rectangle、図形のサイズと位置を表す親コントロールに関連します。
解説
単一操作の Bounds のプロパティを変更する SetBounds のメソッドを呼び出します。
SimpleShape に非クライアント領域がないため、Bounds と ClientRectangle のプロパティは同じです。
例
次の例では、図形の Bounds のプロパティを変更することに SetBounds のメソッドを使用する方法を示します。具体的には、図形は、フォームの左上隅に移動され、四角形に変更されます。この例では、フォームの RectangleShape1 という名前の RectangleShape のコントロールがあることが必要です。
Private Sub RectangleShape1_Click() 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);
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
ライン コントロールとシェイプ コントロールの概要 (Visual Studio)
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)