DataView.AllowNew 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 o establece un valor que indica si las nuevas filas se pueden agregar con el método AddNew().
public:
property bool AllowNew { bool get(); void set(bool value); };
public bool AllowNew { get; set; }
[System.Data.DataSysDescription("DataViewAllowNewDescr")]
public bool AllowNew { get; set; }
member this.AllowNew : bool with get, set
[<System.Data.DataSysDescription("DataViewAllowNewDescr")>]
member this.AllowNew : bool with get, set
Public Property AllowNew As Boolean
Valor de propiedad
true
si las nuevas filas se pueden agregar; si no, false
.
- Atributos
Ejemplos
En el ejemplo siguiente se establece la AllowNew propiedad en true antes de agregar una nueva fila con el AddNew método .
private void AddNew()
{
DataTable table = new DataTable();
// Not shown: code to populate DataTable.
DataView view = new DataView(table);
view.AllowNew = true;
DataRowView rowView = view.AddNew();
rowView["ProductName"] = "New Product Name";
}
Private Sub AddNew()
Dim table As New DataTable()
' Not shown: code to populate DataTable.
Dim view As New DataView(table)
view.AllowNew = True
Dim rowView As DataRowView
rowView = view.AddNew
rowView("ProductName") = "New Product Name"
End Sub
Se aplica a
Consulte también
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.