BrowsableAttribute.Browsable プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > BrowsableAttribute.Browsable プロパティの意味・解説 

BrowsableAttribute.Browsable プロパティ

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

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

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 ()

プロパティ
オブジェクト参照可能である場合trueそれ以外場合false

使用例使用例

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

次にmyAttribute を AttributeCollection 内の 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.");
 }
 
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
BrowsableAttribute クラス
BrowsableAttribute メンバ
System.ComponentModel 名前空間
BrowsableAttribute クラス
Attribute
PropertyDescriptor
EventDescriptor
AttributeCollection クラス
PropertyDescriptorCollection


このページでは「.NET Framework クラス ライブラリ リファレンス」からBrowsableAttribute.Browsable プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からBrowsableAttribute.Browsable プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からBrowsableAttribute.Browsable プロパティ を検索

英和和英テキスト翻訳

英語⇒日本語日本語⇒英語

辞書ショートカット

すべての辞書の索引

「BrowsableAttribute.Browsable プロパティ」の関連用語

BrowsableAttribute.Browsable プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BrowsableAttribute.Browsable プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2026 Microsoft.All rights reserved.

©2026 GRAS Group, Inc.RSS