ListView.ListViewItemCollection Methods
.NET Framework 4.5
The ListView.ListViewItemCollection type exposes the following members.
| Name | Description | |
|---|---|---|
|
Add(ListViewItem) | Adds an existing ListViewItem to the collection. |
|
Add(String) | Creates an item with the specified text and adds it to the collection. |
|
Add(String, Int32) | Creates an item with the specified text and image and adds it to the collection. |
|
Add(String, String) | Creates an item with the specified text and image and adds it to the collection. |
|
Add(String, String, Int32) | Creates an item with the specified key, text, and image and adds an item to the collection. |
|
Add(String, String, String) | Creates an item with the specified key, text, and image, and adds it to the collection. |
|
AddRange(ListView.ListViewItemCollection) | Adds a collection of items to the collection. |
|
AddRange(ListViewItem[]) | Adds an array of ListViewItem objects to the collection. |
|
Clear | Removes all items from the collection. |
|
Contains | Determines whether the specified item is located in the collection. |
|
ContainsKey | Determines whether the collection contains an item with the specified key. |
|
CopyTo | Copies the entire collection into an existing array at a specified location within the array. |
|
Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
Find | Searches for items whose name matches the specified key, optionally searching subitems. |
|
GetEnumerator | Returns an enumerator to use to iterate through the item collection. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
IndexOf | Returns the index within the collection of the specified item. |
|
IndexOfKey | Retrieves the index of the item with the specified key. |
|
Insert(Int32, String) | Creates a new item and inserts it into the collection at the specified index. |
|
Insert(Int32, ListViewItem) | Inserts an existing ListViewItem into the collection at the specified index. |
|
Insert(Int32, String, Int32) | Creates a new item with the specified image index and inserts it into the collection at the specified index. |
|
Insert(Int32, String, String) | Creates a new item with the specified text and image and inserts it in the collection at the specified index. |
|
Insert(Int32, String, String, Int32) | Creates a new item with the specified key, text, and image, and inserts it in the collection at the specified index. |
|
Insert(Int32, String, String, String) | Creates a new item with the specified key, text, and image, and adds it to the collection at the specified index. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Remove | Removes the specified item from the collection. |
|
RemoveAt | Removes the item at the specified index within the collection. |
|
RemoveByKey | Removes the item with the specified key from the collection. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
|
AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
|
Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
|
OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
|
IList.Add | Infrastructure. Adds an existing object to the collection. |
|
IList.Contains | Infrastructure. Determines whether the specified item is in the collection. |
|
IList.IndexOf | Infrastructure. Returns the index within the collection of the specified item. |
|
IList.Insert | Infrastructure. Inserts an object into the collection at the specified index. |
|
IList.Remove | Infrastructure. Removes the specified item from the collection. |