DataView.AllowNew Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the new rows can be added by using the AddNew() method.
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
Property Value
true
, if new rows can be added; otherwise, false
.
- Attributes
Examples
The following example sets the AllowNew property to true before adding a new row with the AddNew method.
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
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.