MergablePropertyAttribute.AllowMerge Propiedad

Definición

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:

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

Se aplica a

Consulte también