MergablePropertyAttribute(Boolean) Construtor
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.
Inicializa uma nova instância da classe MergablePropertyAttribute.
public:
MergablePropertyAttribute(bool allowMerge);
public MergablePropertyAttribute (bool allowMerge);
new System.ComponentModel.MergablePropertyAttribute : bool -> System.ComponentModel.MergablePropertyAttribute
Public Sub New (allowMerge As Boolean)
Parâmetros
- allowMerge
- Boolean
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 marca uma propriedade conforme apropriado para mesclagem. Esse código cria um novo MergablePropertyAttribute, define seu valor como MergablePropertyAttribute.Yese o associa à propriedade .
public:
[MergableProperty(true)]
property int MyProperty
{
int get()
{
// Insert code here.
return 0;
}
void set( int value )
{
// Insert code here.
}
}
[MergableProperty(true)]
public int MyProperty {
get {
// Insert code here.
return 0;
}
set {
// Insert code here.
}
}
<MergableProperty(True)> _
Public Property MyProperty() As Integer
Get
' Insert code here.
Return 0
End Get
Set
' Insert code here.
End Set
End Property