MergablePropertyAttribute.AllowMerge Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um valor que indica se essa propriedade pode ser combinada às propriedades que pertencem a outros objetos em uma janela Propriedades.
public:
property bool AllowMerge { bool get(); };
public bool AllowMerge { get; }
member this.AllowMerge : bool
Public ReadOnly Property AllowMerge As Boolean
Valor da propriedade
true
se esta propriedade puder ser combinada com propriedades que pertençam a outros objetos em uma janela Propriedades; caso contrário, false
.
Exemplos
O exemplo a seguir verifica se MyProperty
é apropriado mesclar. Primeiro, o código obtém os atributos para MyProperty
:
Recuperando um PropertyDescriptorCollection com todas as propriedades do objeto .
Indexação no PropertyDescriptorCollection para obter
MyProperty
.Salvando os atributos dessa propriedade na variável de atributos.
Em seguida, o código define myAttribute
como o valor do MergablePropertyAttribute no AttributeCollection e verifica se a propriedade é apropriada para mesclagem.
// 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