BrowsableAttribute.Browsable Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan nilai yang menunjukkan apakah objek dapat dijelajahi.
public:
property bool Browsable { bool get(); };
public bool Browsable { get; }
member this.Browsable : bool
Public ReadOnly Property Browsable As Boolean
Nilai Properti
true
jika objek dapat dijelajahi; jika tidak, false
.
Contoh
Contoh berikut memeriksa untuk melihat apakah MyProperty
dapat dijelajahi. Pertama, kode mendapatkan atribut untuk MyProperty
dengan:
Mengambil PropertyDescriptorCollection dengan semua properti untuk objek .
Mengindeks ke PropertyDescriptorCollection dalam untuk mendapatkan
MyProperty
.Menyimpan atribut untuk properti ini dalam variabel atribut.
Kemudian kode diatur myAttribute
ke nilai BrowsableAttribute di AttributeCollection dan memeriksa apakah properti dapat dijelajahi.
// 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)["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.
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