ListView::ListViewItemCollection::Insert Method (Int32, ListViewItem^)
Inserts an existing ListViewItem into the collection at the specified index.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index location where the item is inserted.
- item
-
Type:
System.Windows.Forms::ListViewItem^
The ListViewItem that represents the item to insert.
Return Value
Type: System.Windows.Forms::ListViewItem^The ListViewItem that was inserted into the collection.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index parameter is less than 0 or greater than the value of the Count property of the ListView::ListViewItemCollection. |
This version of the Insert method allows you to insert an existing ListViewItem at a specific position in the ListView::ListViewItemCollection.
Note |
|---|
If the ListView::Sorting property is set to a value other than SortOrder::None or if the ListViewItemSorter property is set, the list is sorted after the item is inserted. |
To add an item without specifying a specific position in the collection to add the item, use the Add method. If you want to add an array of items to the collection, use the AddRange method. You can use this method if you want to insert a new item into an existing collection of items.
Available since 1.1
