BrowsableAttribute(Boolean) コンストラクター

定義

BrowsableAttribute クラスの新しいインスタンスを初期化します。

public:
 BrowsableAttribute(bool browsable);
public BrowsableAttribute (bool browsable);
new System.ComponentModel.BrowsableAttribute : bool -> System.ComponentModel.BrowsableAttribute
Public Sub New (browsable As Boolean)

パラメーター

browsable
Boolean

特定のプロパティまたはイベントをデザイン時に変更できる場合は true。それ以外の場合は false。 既定値は、true です。

次の例では、プロパティをブロウズ可能としてマークします。 このコードでは、新 BrowsableAttributeしい を作成し、その値を に BrowsableAttribute.Yes設定し、 プロパティにバインドします。

   [Browsable(true)]
   int get()
   {
      // Insert code here.
      return 0;
   }
   void set( int value )
   {
      
      // Insert code here.
   }
}
[Browsable(true)]
public int MyProperty
{
    get
    {
        // Insert code here.
        return 0;
    }
    set
    {
        // Insert code here.
    }
}
<Browsable(True)> _
Public Property MyProperty() As Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set
        ' Insert code here.
    End Set
End Property

注釈

プロパティを 値trueのコンストラクターでBrowsableAttributeマークすると、この属性の値は定数メンバー Yesに設定されます。 値のコンストラクターでマークされた BrowsableAttribute プロパティの場合、値 falseは です No。 したがって、コードでこの属性の値をチェックする場合は、 属性を または BrowsableAttribute.NoとしてBrowsableAttribute.Yes指定する必要があります。

適用対象

こちらもご覧ください