次の方法で共有


Shape.Visible プロパティ

更新 : 2007 年 11 月

ライン コントロールまたはシェイプ コントロールが表示されるかどうかを示す値を取得または設定します。

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

構文

'宣言
<BrowsableAttribute(True)> _
Public Property Visible As Boolean
'使用
Dim instance As Shape
Dim value As Boolean

value = instance.Visible

instance.Visible = value
[BrowsableAttribute(true)]
public bool Visible { get; set; }
[BrowsableAttribute(true)]
public:
property bool Visible {
    bool get ();
    void set (bool value);
}
public function get Visible () : boolean
public function set Visible (value : boolean)

プロパティ値

型 : System.Boolean

コントロールが表示される場合は true。それ以外の場合は false。既定は、true です。

解説

Visible プロパティを使用して、LineShapeOvalShape、または RectangleShape の各コントロールで作成されるグラフィックス オブジェクトを実行時に表示するか非表示にすることができます。

Visible プロパティを使用して、2 つの異なる図形を実行時に切り替える方法を次の例に示します。この例では、RectangleShape1 という名前の RectangleShape コントロールおよび OvalShape1 という名前の OvalShape コントロールがフォーム上に配置されている必要があります。最適な結果を得るために、両方のコントロールを同じサイズにし、完全に重ねて配置します。

Private Sub ShapeVisible_Load(ByVal sender As System.Object, _
 ByVal e As System.EventArgs) Handles MyBase.Load
    ' Hide the oval.
    OvalShape1.Visible = False
End Sub

Private Sub Shapes_Click(ByVal sender As System.Object, _
 ByVal e As System.EventArgs) Handles _
 RectangleShape1.Click, OvalShape1.Click
    If OvalShape1.Visible = True Then
        ' Hide the oval.
        OvalShape1.Visible = False
        ' Show the rectangle.
        RectangleShape1.Visible = True
    Else
        ' Hide the rectangle.
        RectangleShape1.Visible = False
        ' Show the oval.
        OvalShape1.Visible = True
    End If
End Sub
private void ShapeVisible_Load(System.Object sender, System.EventArgs e)
{
    // Hide the oval.
    ovalShape1.Visible = false;
}

private void Shapes_Click(System.Object sender, System.EventArgs e)
{
    if (ovalShape1.Visible == true)
    // Hide the oval.
    {
        ovalShape1.Visible = false;
        // Show the rectangle.
        rectangleShape1.Visible = true;
    }
    else
    {
        // Hide the rectangle.
        rectangleShape1.Visible = false;
        // Show the oval.
        ovalShape1.Visible = true;
    }
}

アクセス許可

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

参照

参照

Shape クラス

Shape メンバ

Microsoft.VisualBasic.PowerPacks 名前空間

その他の技術情報

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

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

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