BrowsableAttribute クラス
アセンブリ: System (system.dll 内)

<AttributeUsageAttribute(AttributeTargets.All)> _ Public NotInheritable Class BrowsableAttribute Inherits Attribute
[AttributeUsageAttribute(AttributeTargets::All)] public ref class BrowsableAttribute sealed : public Attribute

通常、ビジュアルなデザイナは、参照できる属性を持たないメンバ、または値 true の BrowsableAttribute コンストラクタを使用してマークされているメンバを [プロパティ] ウィンドウに表示します。これらのメンバはデザイン時に変更できます。値 false の BrowsableAttribute コンストラクタを使用してマークされているメンバは、デザイン時に編集できないため、ビジュアルなデザイナには表示されません。既定値は true です。
![]() |
---|
値 true の BrowsableAttribute コンストラクタを使用してプロパティをマークすると、この属性の値は定数メンバ Yes に設定されます。値 false の BrowsableAttribute コンストラクタを使用してマークされているプロパティの場合、値は No になります。したがって、コード内でこの属性の値を確認する場合は、属性を BrowsableAttribute.Yes または BrowsableAttribute.No として指定する必要があります。 |

<Browsable(True)> _ Public Property MyProperty() As Integer Get ' Insert code here. Return 0 End Get Set ' Insert code here. End Set End Property
[Browsable(true)] public int MyProperty { get { // Insert code here. return 0; } set { // Insert code here. } }
public: [Browsable(true)] property int MyProperty { int get() { // Insert code here. return 0; } void set( int value ) { // Insert code here. } }
/** @attribute Browsable(true) */ /** @property */ public int get_MyProperty() { // Insert code here. return 0; } //get_MyProperty /** @property */ public void set_MyProperty(int value) { // Insert code here. } //set_MyProperty
Browsable(true) public function get MyProperty() : int { // Insert code here. return 0; } public function set MyProperty(value : int) { }
MyProperty の BrowsableAttribute の値を確認する方法を次の例に示します。最初に、オブジェクトのすべてのプロパティを保持する PropertyDescriptorCollection を取得します。次に、PropertyDescriptorCollection にインデックスを付けて、MyProperty を取得します。そして、このプロパティの属性を返し、その属性を属性変数に保存します。
この例では、BrowsableAttribute の値を確認する 2 種類の方法を示します。2 番目のコード片では、Equals メソッドを呼び出します。最後のコード片では、Browsable プロパティを使用して値を確認します。
' Gets the attributes for the property. Dim attributes As AttributeCollection = _ TypeDescriptor.GetProperties(Me)("MyProperty").Attributes ' Checks to see if the value of the BrowsableAttribute is Yes. If attributes(GetType(BrowsableAttribute)).Equals(BrowsableAttribute.Yes) Then ' Insert code here. End If ' This is another way to see whether 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 value of the BrowsableAttribute is Yes. if(attributes[typeof(BrowsableAttribute)].Equals(BrowsableAttribute.Yes)) { // Insert code here. } // This is another way to see whether 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 value of the BrowsableAttribute is Yes. if ( attributes[ BrowsableAttribute::typeid ]->Equals( BrowsableAttribute::Yes ) ) { // Insert code here. } // This is another way to see whether 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 value of the BrowsableAttribute is Yes. if (attributes.get_Item(BrowsableAttribute.class.ToType()).Equals( BrowsableAttribute.Yes)) { // Insert code here. } // This is another way to see whether the property is browsable. BrowsableAttribute myAttribute = (BrowsableAttribute) (attributes.get_Item(BrowsableAttribute.class.ToType())); if (myAttribute.get_Browsable()) { // Insert code here. }
// Gets the attributes for the property. var attributes : AttributeCollection = TypeDescriptor.GetProperties(this)["MyProperty"].Attributes; // Checks to see if the value of the BrowsableAttribute is Yes. if(attributes[BrowsableAttribute].Equals(BrowsableAttribute.Yes)) { Console.WriteLine("MyProperty is browsable."); } // This is another way to see whether the property is browsable. var myAttribute : BrowsableAttribute = BrowsableAttribute(attributes[BrowsableAttribute]); if(myAttribute.Browsable) { Console.WriteLine("MyProperty is browsable."); }
BrowsableAttribute を使用してクラスをマークした場合は、次のコードを使用して値を確認します。
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(MyProperty) If attributes(GetType(BrowsableAttribute)).Equals(BrowsableAttribute.Yes) Then ' Insert code here. End If
AttributeCollection attributes = TypeDescriptor.GetAttributes(MyProperty); if(attributes[typeof(BrowsableAttribute)].Equals(BrowsableAttribute.Yes)) { // Insert code here. }
AttributeCollection^ attributes = TypeDescriptor::GetAttributes( MyProperty ); if ( attributes[ BrowsableAttribute::typeid ]->Equals( BrowsableAttribute::Yes ) ) { // Insert code here. }
AttributeCollection attributes = TypeDescriptor.GetAttributes((Int32)get_MyProperty()); if (attributes.get_Item(BrowsableAttribute.class.ToType()).Equals( BrowsableAttribute.Yes)) { // Insert code here. }
var attributes : AttributeCollection = TypeDescriptor.GetAttributes(MyProperty); if(attributes[BrowsableAttribute].Equals(BrowsableAttribute.Yes)) { Console.WriteLine("MyProperty is browsable."); }

System.Attribute
System.ComponentModel.BrowsableAttribute


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


BrowsableAttribute メンバ
System.ComponentModel 名前空間
Attribute
PropertyDescriptor
EventDescriptor
AttributeCollection クラス
PropertyDescriptorCollection
- BrowsableAttribute クラスのページへのリンク