MergablePropertyAttribute(Boolean) Constructor
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í.
Inicializa una nueva instancia de la clase 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
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 marca una propiedad según corresponda para combinar. Este código crea un nuevo MergablePropertyAttribute, establece su valor MergablePropertyAttribute.Yesen y lo enlaza a la propiedad .
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