BrowsableAttribute.Browsable-Eigenschaft
Ruft einen Wert ab, der angibt, ob ein Objekt browsebar ist.
Namespace: System.ComponentModel
Assembly: System (in system.dll)
Syntax
'Declaration
Public ReadOnly Property Browsable As Boolean
'Usage
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
Eigenschaftenwert
true, wenn das Objekt browsebar ist, andernfalls false.
Beispiel
Im folgenden Beispiel wird überprüft, ob MyProperty
browsebar ist. Zunächst werden im Code die Attribute für MyProperty
wie folgt abgerufen:
Abrufen einer PropertyDescriptorCollection mit allen Eigenschaften für das Objekt.
Abrufen von
MyProperty
über den Index in PropertyDescriptorCollection.Speichern der Attribute für diese Eigenschaft in der Variablen attributes.
Anschließend wird im Code myAttribute
auf den Wert von BrowsableAttribute in der AttributeCollection festgelegt, und es wird überprüft, ob die Eigenschaft browsebar ist.
' 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.");
}
Plattformen
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 unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
BrowsableAttribute-Klasse
BrowsableAttribute-Member
System.ComponentModel-Namespace
BrowsableAttribute-Klasse
Attribute
PropertyDescriptor
EventDescriptor
AttributeCollection-Klasse
PropertyDescriptorCollection