CurrencyManager.AddNew Method
Adds a new item to the underlying list.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Exception | Condition |
|---|---|
| NotSupportedException | The underlying data source does not implement IBindingList, or the data source has thrown an exception because the user has attempted to add a row to a read-only or fixed-size DataView. |
This method is supported only if the data source implements the IBindingList interface and the data source allows adding rows (AllowNew is true).
Note |
|---|
This property was designed to allow complex-bound controls, such as the DataGrid control, to add new items to list. |
You typically use this property only if you are creating your own control that incorporates the CurrencyManager. Otherwise, to add items if the data source is a DataView, use the DataView.AddNew method of the DataView class. If the data source is a DataTable, use the NewRow method and add the row to the DataRowCollection.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note