MergablePropertyAttribute.AllowMerge 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 properti ini dapat digabungkan dengan properti milik objek lain di jendela Properti.
public:
property bool AllowMerge { bool get(); };
public bool AllowMerge { get; }
member this.AllowMerge : bool
Public ReadOnly Property AllowMerge As Boolean
Nilai Properti
true
jika properti ini dapat dikombinasikan dengan properti milik objek lain di jendela Properti; jika tidak, false
.
Contoh
Contoh berikut memeriksa untuk melihat apakah MyProperty
sesuai untuk digabungkan. 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 MergablePropertyAttribute di AttributeCollection dan memeriksa apakah properti sesuai untuk digabungkan.
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyPropertyProperty" ]->Attributes;
// Checks to see if the property is bindable.
MergablePropertyAttribute^ myAttribute = dynamic_cast<MergablePropertyAttribute^>(attributes[ MergablePropertyAttribute::typeid ]);
if ( myAttribute->AllowMerge )
{
// Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this)["MyPropertyProperty"].Attributes;
// Checks to see if the property is bindable.
MergablePropertyAttribute myAttribute = (MergablePropertyAttribute)attributes[typeof(MergablePropertyAttribute)];
if(myAttribute.AllowMerge) {
// Insert code here.
}
' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
TypeDescriptor.GetProperties(Me)("MyPropertyProperty").Attributes
' Checks to see if the property is bindable.
Dim myAttribute As MergablePropertyAttribute = _
CType(attributes(GetType(MergablePropertyAttribute)), _
MergablePropertyAttribute)
If myAttribute.AllowMerge Then
' Insert code here.
End If