LocalizableAttribute(Boolean) Oluşturucu

Tanım

LocalizableAttribute sınıfının yeni bir örneğini başlatır.

public:
 LocalizableAttribute(bool isLocalizable);
public LocalizableAttribute (bool isLocalizable);
new System.ComponentModel.LocalizableAttribute : bool -> System.ComponentModel.LocalizableAttribute
Public Sub New (isLocalizable As Boolean)

Parametreler

isLocalizable
Boolean

true bir özelliğin yerelleştirilmesi gerekiyorsa; aksi takdirde , false.

Örnekler

Aşağıdaki örnek, bir özelliğin yerelleştirilmesi gerektiğini işaretler. Bu kod yeni LocalizableAttributebir oluşturur, değerini olarak LocalizableAttribute.Yesayarlar ve özelliğine bağlar.

   [Localizable(true)]
   int get()
   {
      // Insert code here.
      return 0;
   }

   void set( int value )
   {
      // Insert code here.
   }
}

[Localizable(true)]
public int MyProperty {
   get {
      // Insert code here.
      return 0;
   }
   set {
      // Insert code here.
   }
}
<Localizable(True)> _  
Public Property MyProperty() As Integer
    Get
        ' Insert code here.
        Return 0
    End Get
    Set
        ' Insert code here.
    End Set 
End Property

Şunlara uygulanır

Ayrıca bkz.