Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataRowView::IsNew Property

 

Indicates whether a DataRowView is new.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
property bool IsNew {
	bool get();
}

Property Value

Type: System::Boolean

true if the row is new; otherwise false.

After you call you call AddNew, IsNew will be true for the returned DataRowView. IsNew will be true until either EndEdit is called on the DataRowView, or AddNew is called again. (There is only one new row.)

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft