RecommendedAsConfigurableAttribute(Boolean) Oluşturucu
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
RecommendedAsConfigurableAttribute sınıfının yeni bir örneğini başlatır.
public:
RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable);
public RecommendedAsConfigurableAttribute (bool recommendedAsConfigurable);
new System.ComponentModel.RecommendedAsConfigurableAttribute : bool -> System.ComponentModel.RecommendedAsConfigurableAttribute
Public Sub New (recommendedAsConfigurable As Boolean)
Parametreler
- recommendedAsConfigurable
- Boolean
true
bu özniteliğin bağlı olduğu özellik bir uygulama ayarı olarak kullanılabiliyorsa; aksi takdirde , false
.
Örnekler
Aşağıdaki örnek, bir özelliği uygulama ayarı olarak kullanılabilir olarak işaretler. Bu kod yeni RecommendedAsConfigurableAttributebir oluşturur, değerini olarak RecommendedAsConfigurableAttribute.Yesayarlar ve özelliğine bağlar.
public:
[RecommendedAsConfigurable(true)]
property int MyProperty
{
int get()
{
// Insert code here.
return 0;
}
void set( int value )
{
// Insert code here.
}
}
[RecommendedAsConfigurable(true)]
public int MyProperty {
get {
// Insert code here.
return 0;
}
set {
// Insert code here.
}
}
<RecommendedAsConfigurable(True)> _
Public Property MyProperty() As Integer
Get
' Insert code here.
Return 0
End Get
Set
' Insert code here.
End Set
End Property