ListViewItem::ListViewSubItemCollection::RemoveAt Method (Int32)
.NET Framework (current version)
Removes the subitem at the specified index within the collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index of the subitem to remove.
Implements
IList::RemoveAt(Int32)| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index parameter is less than zero or greater than or equal to the value of the Count property of the ListViewItem::ListViewSubItemCollection. |
When you remove a subitem from the collection, the indexes change for subsequent subitems in the collection. All information about the removed subitem is deleted. You can use this method to remove a specific subitem from the collection by specifying the index of the subitem to remove from the collection. To specify the subitem to remove instead of the index to the subitem, use the Remove method. To remove all subitems from the collection, use the Clear method.
.NET Framework
Available since 1.1
Available since 1.1
Show: