DataView.AllowNew Proprietà

Definizione

Ottiene o imposta un valore che indica se le nuove righe possono essere aggiunte con il metodo 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

Valore della proprietà

true, se è possibile aggiungere nuove righe; in caso contrario, false.

Attributi

Esempio

Nell'esempio seguente la AllowNew proprietà viene impostata su true prima di aggiungere una nuova riga con il AddNew metodo .

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

Si applica a

Vedi anche