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.

IBindingList::AddNew Method ()

 

Adds a new item to the list.

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

Object^ AddNew()

Return Value

Type: System::Object^

The item added to the list.

Exception Condition
NotSupportedException

AllowNew is false.

This method is supported only if AllowNew is true; otherwise, a NotSupportedException is thrown.

Implementing this method means that the IBindingList list must understand the type of objects to add to the list and must understand how to create a new instance of that type. For example, if you have a collection of myCustomer objects, the AddNew method should add a new myCustomer object to the list.

System_CAPS_noteNote

If the objects in this list implement the IEditableObject interface, calling the CancelEdit method should discard an object, not add it to the list, when the object was created using the AddNew method. The object should only be added to the list when the IEditableObject::EndEdit method is called. Therefore, you must sychronize the object and the list carefully.

When this method is called, you should raise a ListChanged event with the ItemAdded enumeration carrying the appropriate index. The added row is in a state where hitting Esc on a DataGridView control can remove the new row. Raising the ListChanged event with the ItemAdded enumeration a second time on this row indicates that the item is now a normal row (not in new state).

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