ListView::ListViewItemCollection::Insert Method (Int32, ListViewItem^)

 

Inserts an existing ListViewItem into the collection at the specified index.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
ListViewItem^ Insert(
	int index,
	ListViewItem^ item
)

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.

System_CAPS_noteNote

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.

.NET Framework
Available since 1.1
Return to top
Show: