SimpleShape.Width プロパティ
図形の幅を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(False)> _
Public Property Width As Integer
[BrowsableAttribute(false)]
public int Width { get; set; }
[BrowsableAttribute(false)]
public:
property int Width {
int get ();
void set (int value);
}
[<BrowsableAttribute(false)>]
member Width : int with get, set
function get Width () : int
function set Width (value : int)
プロパティ値
型 : System.Int32
図形の幅 (ピクセル単位)。
解説
行われた Width と Left のプロパティ値に対する変更は、変更に図形の Right のプロパティ値になります。
Height と Width 両方のプロパティを変更するには Size のプロパティを使用して、単一のステートメントで図形のサイズと位置を変更するには SetBounds のメソッドを使用します。
例
次の例では、図形のサイズを変更するには Height と Width のプロパティを使用する方法を示します。この例では、フォームの OvalShape1 という名前の OvalShape のコントロールがあることが必要です。
Private Sub OvalShape1_Click() Handles OvalShape1.Click
' Set the height.
OvalShape1.Height = OvalShape1.Height + 50
' Set the width the same as the height to make it a circle.
OvalShape1.Width = OvalShape1.Height
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
// Set the height.
ovalShape1.Height = ovalShape1.Height + 50;
// Set the width the same as the height to make it a circle.
ovalShape1.Width = ovalShape1.Height;
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
ライン コントロールとシェイプ コントロールの概要 (Visual Studio)
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)