次の方法で共有


SimpleShape.Width プロパティ

更新 : 2007 年 11 月

図形の幅を取得または設定します。

名前空間 :  Microsoft.VisualBasic.PowerPacks
アセンブリ :  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
<BrowsableAttribute(False)> _
Public Property Width As Integer
'使用
Dim instance As SimpleShape
Dim value As Integer

value = instance.Width

instance.Width = value
[BrowsableAttribute(false)]
public int Width { get; set; }
[BrowsableAttribute(false)]
public:
property int Width {
    int get ();
    void set (int value);
}
public function get Width () : int
public function set Width (value : int)

プロパティ値

型 : System.Int32

図形の幅 (ピクセル単位)。

解説

Width プロパティおよび Left プロパティの値を変更すると、図形の Right プロパティの値が変更されます。

Size プロパティを使用して Height プロパティと Width プロパティの両方を変更したり、SetBounds メソッドを使用して、1 つのステートメントで図形のサイズと位置を変更できます。

Height プロパティおよび Width プロパティを使用して図形のサイズを変更する方法を次の例に示します。この例では、OvalShape1 という名前の OvalShape コントロールがフォームに配置されている必要があります。

Private Sub OvalShape1_Click(ByVal sender As System.Object, _
 ByVal e As System.EventArgs) 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;
}

アクセス許可

  • 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

SimpleShape クラス

SimpleShape メンバ

Microsoft.VisualBasic.PowerPacks 名前空間

その他の技術情報

ライン コントロールとシェイプ コントロールの概要 (Visual Studio)

方法 : LineShape コントロールを使用して線を描画する (Visual Studio)

方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)