LocalizableAttribute.IsLocalizable Properti

Definisi

Mendapatkan nilai yang menunjukkan apakah properti harus dilokalkan.

public:
 property bool IsLocalizable { bool get(); };
public bool IsLocalizable { get; }
member this.IsLocalizable : bool
Public ReadOnly Property IsLocalizable As Boolean

Nilai Properti

true jika properti harus dilokalkan; jika tidak, false.

Contoh

Contoh berikut menunjukkan cara memeriksa nilai LocalizableAttribute untuk MyProperty. Pertama, kode mendapatkan PropertyDescriptorCollection dengan semua properti untuk objek . Kemudian, kode mendapatkan MyProperty dari PropertyDescriptorCollection. Selanjutnya, ia mengembalikan atribut untuk properti ini dan menyimpannya dalam variabel atribut.

Akhirnya, kode diatur myAttribute ke nilai LocalizableAttribute di AttributeCollection dan memeriksa apakah properti perlu dilokalkan.

// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;

// Checks to see if the property needs to be localized.
LocalizableAttribute^ myAttribute = dynamic_cast<LocalizableAttribute^>(attributes[ LocalizableAttribute::typeid ]);
if ( myAttribute->IsLocalizable )
{
   // Insert code here.
}
// Gets the attributes for the property.
 AttributeCollection attributes = 
    TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
 
 // Checks to see if the property needs to be localized.
 LocalizableAttribute myAttribute = 
    (LocalizableAttribute)attributes[typeof(LocalizableAttribute)];
 if(myAttribute.IsLocalizable) {
    // Insert code here.
 }
' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
   TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
       
' Checks to see if the property needs to be localized.
Dim myAttribute As LocalizableAttribute = _
   CType(attributes(GetType(LocalizableAttribute)), LocalizableAttribute)
   
If myAttribute.IsLocalizable Then
     ' Insert code here.
End If

Berlaku untuk

Lihat juga