MergablePropertyAttribute.AllowMerge Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene un valor que indica si esta propiedad puede combinarse en una ventana Propiedades con propiedades pertenecientes a otros objetos.
public:
property bool AllowMerge { bool get(); };
public bool AllowMerge { get; }
member this.AllowMerge : bool
Public ReadOnly Property AllowMerge As Boolean
Valor de propiedad
true
si esta propiedad se puede combinar en una ventana Propiedades con otras propiedades pertenecientes a otros objetos; en caso contrario, false
.
Ejemplos
En el ejemplo siguiente se comprueba si MyProperty
es adecuado combinar. En primer lugar, el código obtiene los atributos de MyProperty
por:
Recuperar un PropertyDescriptorCollection objeto con todas las propiedades del objeto .
Indexación en para PropertyDescriptorCollection obtener
MyProperty
.Guardando los atributos de esta propiedad en la variable attributes.
A continuación, el código establece myAttribute
en el valor de MergablePropertyAttribute en AttributeCollection y comprueba si la propiedad es adecuada para combinar.
// 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