DataView.AllowNew 属性

定义

获取或设置一个值,该值指示是否可以通过使用 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

属性值

如果可以添加新行,则为 true;否则为 false

属性

示例

以下示例在使用 方法添加新行AddNew之前将 AllowNew 属性设置为 true。

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

适用于

另请参阅