次の方法で共有


BrowsableAttribute.Browsable プロパティ

オブジェクトが参照可能かどうかを示す値を取得します。

名前空間: System.ComponentModel
アセンブリ: System (system.dll 内)

構文

'宣言
Public ReadOnly Property Browsable As Boolean
'使用
Dim instance As BrowsableAttribute
Dim value As Boolean

value = instance.Browsable
public bool Browsable { get; }
public:
property bool Browsable {
    bool get ();
}
/** @property */
public boolean get_Browsable ()
public function get Browsable () : boolean

プロパティ値

オブジェクトが参照可能である場合は true。それ以外の場合は false

使用例

MyProperty が参照できるかどうかを確認する例を次に示します。最初に、次の方法で MyProperty の属性を取得します。

  • オブジェクトのすべてのプロパティを保持する PropertyDescriptorCollection を取得します。

  • PropertyDescriptorCollection にインデックスを付けて、MyProperty を取得します。

  • プロパティの属性を属性変数に格納します。

次に、myAttributeAttributeCollection 内の BrowsableAttribute の値に設定し、プロパティが参照できるかどうかを確認します。

' Gets the attributes for the property.
Dim attributes As AttributeCollection = TypeDescriptor.GetProperties(Me)("MyProperty").Attributes

' Checks to see if the property is browsable.
Dim myAttribute As BrowsableAttribute = CType(attributes(GetType(BrowsableAttribute)), BrowsableAttribute)
If myAttribute.Browsable Then
    ' Insert code here.
End If 
// Gets the attributes for the property.
 AttributeCollection attributes = 
    TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
 
 // Checks to see if the property is browsable.
 BrowsableAttribute myAttribute = (BrowsableAttribute)attributes[typeof(BrowsableAttribute)];
 if(myAttribute.Browsable) {
    // Insert code here.
 }
 
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;

// Checks to see if the property is browsable.
BrowsableAttribute^ myAttribute = dynamic_cast<BrowsableAttribute^>(attributes[ BrowsableAttribute::typeid ]);
if ( myAttribute->Browsable )
{
   // Insert code here.
}
    // Gets the attributes for the property.
    AttributeCollection attributes = 
        TypeDescriptor.GetProperties(this).get_Item("MyProperty").
        get_Attributes();

    // Checks to see if the property is browsable.
    BrowsableAttribute myAttribute = 
        ((BrowsableAttribute)(attributes.get_Item(
        BrowsableAttribute.class.ToType())));

    if (myAttribute.get_Browsable()) {
        // Insert code here.
    }
} //Method 
// Gets the attributes for the property.
 var attributes : AttributeCollection = 
    TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
 
 // Checks to see if the property is browsable.
 var myAttribute : BrowsableAttribute = BrowsableAttribute(attributes[BrowsableAttribute]);
 if(myAttribute.Browsable) {
    Console.WriteLine("MyProperty is browsable.");
 }
 

プラットフォーム

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 2.0、1.1、1.0

参照

関連項目

BrowsableAttribute クラス
BrowsableAttribute メンバ
System.ComponentModel 名前空間
BrowsableAttribute クラス
Attribute
PropertyDescriptor
EventDescriptor
AttributeCollection クラス
PropertyDescriptorCollection