DevListViewItemCollection Class

Represents the collection of items in a DevListView control or assigned to a ListViewGroup.

Definition

Namespace: DevCase.UI.Layout.DevListViewData
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public class DevListViewItemCollection : ListViewListViewItemCollection
Inheritance
Object    ListViewListViewItemCollection    DevListViewItemCollection

Constructors

DevListViewItemCollection Initializes a new instance of the DevListViewItemCollection class.

Properties

Count Gets the number of items in the collection.
(Inherited from ListViewListViewItemCollection)
IsReadOnly Gets a value indicating whether the collection is read-only.
(Inherited from ListViewListViewItemCollection)
ItemInt32 Gets or sets the item at the specified index within the collection.
(Inherited from ListViewListViewItemCollection)
ItemString Retrieves the item with the specified key.
(Inherited from ListViewListViewItemCollection)

Methods

Add(ListViewItem) Adds an existing ListViewItem to the collection.
(Overrides ListViewListViewItemCollectionAdd(ListViewItem))
Add(String) Creates an item with the specified text and adds it to the collection.
(Inherited from ListViewListViewItemCollection)
Add(String, Int32) Creates an item with the specified text and image and adds it to the collection.
(Inherited from ListViewListViewItemCollection)
Add(String, String) Creates an item with the specified text and image and adds it to the collection.
(Inherited from ListViewListViewItemCollection)
Add(String, String, Int32) Creates an item with the specified key, text, and image and adds an item to the collection.
(Inherited from ListViewListViewItemCollection)
Add(String, String, String) Creates an item with the specified key, text, and image, and adds it to the collection.
(Inherited from ListViewListViewItemCollection)
AddRange(DevListViewItemCollection) Adds a collection of items to the collection.
AddRange(ListViewItem) Adds an array of ListViewItem objects to the collection.
AddRange(ListViewListViewItemCollection) Adds a collection of items to the collection.
Clear Removes all items from the collection.
(Inherited from ListViewListViewItemCollection)
Contains Determines whether the specified item is located in the collection.
(Inherited from ListViewListViewItemCollection)
ContainsKey Determines whether the collection contains an item with the specified key.
(Inherited from ListViewListViewItemCollection)
CopyTo Copies the entire collection into an existing array at a specified location within the array.
(Inherited from ListViewListViewItemCollection)
Equals Determines whether the specified object is equal to the current object.
(Inherited from Object)
Find Searches for items whose name matches the specified key, optionally searching subitems.
(Inherited from ListViewListViewItemCollection)
GetEnumerator Returns an enumerator to use to iterate through the item collection.
(Inherited from ListViewListViewItemCollection)
GetHashCode Serves as the default hash function.
(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.
(Inherited from ListViewListViewItemCollection)
IndexOfKey Retrieves the index of the item with the specified key.
(Inherited from ListViewListViewItemCollection)
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.
Remove Removes the specified item from the collection.
(Overrides ListViewListViewItemCollectionRemove(ListViewItem))
RemoveAt Removes the item at the specified index within the collection.
(Overrides ListViewListViewItemCollectionRemoveAt(Int32))
RemoveAtRange Removes a collection of items from the collection.
RemoveByKey Removes the item with the specified key from the collection.
(Overrides ListViewListViewItemCollectionRemoveByKey(String))
RemoveRange(DevListViewItemCollection) Removes a collection of items from the collection.
RemoveRange(ListViewItem) Removes an array of ListViewItem objects from the collection.
RemoveRange(ListViewListViewItemCollection) Removes a collection of items from the collection.
RemoveRange(ListViewSelectedListViewItemCollection) Removes a collection of selected items from the collection.
ToString Returns a string that represents the current object.
(Inherited from Object)

Extension Methods

AsEnumerable Enumerates all the ListViewItem items in the source ListViewListViewItemCollection collection, and returns a IEnumerableT collection.
(Defined by ListViewItemCollectionExtensions)
CanConvertTo Determines whether the source object can be converted to the specified target type.
(Defined by ObjectExtensions)
CanConvertToT Determines whether the source object can be converted to the specified target type.
(Defined by ObjectExtensions)
ConvertToT Converts an object to the specified target type.

If the conversion fails, an exception is thrown.
(Defined by ObjectExtensions)

ConvertToT Converts an object to the specified target type.

If the conversion fails, returns the specified default value.
(Defined by ObjectExtensions)

ForEach Performs the specified action on each item of the specified ListViewListViewItemCollection collection.
(Defined by ListViewItemCollectionExtensions)
IsDisposable Determines whether the specified object is a disposable type (i.e., it implements IDisposable interface).
(Defined by ObjectExtensions)
Speak Speaks the string representation of the source object by using the operating system integrated text-to-speech synthesizer.
(Defined by ObjectExtensions)
Speak Speaks the string representation of the source object by using the operating system integrated text-to-speech synthesizer.
(Defined by ObjectExtensions)
ThrowIfNullTException Throws the specified exception if the source object is null.
(Defined by ObjectExtensions)

See Also