ListViewItem::ListViewSubItemCollection::Add Method (ListViewItem::ListViewSubItem^)

 

Adds an existing ListViewItem::ListViewSubItem to the collection.

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

public:
ListViewItem::ListViewSubItem^ Add(
	ListViewItem::ListViewSubItem^ item
)

Return Value

Type: System.Windows.Forms::ListViewItem::ListViewSubItem^

The ListViewItem::ListViewSubItem that was added to the collection.

You can use this version of the Add method to add an existing ListViewItem::ListViewSubItem to the collection. This method is typically used to reuse existing subitems from other ListViewItem objects. Items that are added to the collection are inserted at the end of the list. To insert an item into the collection at a specific position, use the Insert method. If you want to add an array of existing ListViewItem::ListViewSubItem objects, you can use the version of the AddRange method that accepts an array of ListViewItem::ListViewSubItem objects as a parameter.

.NET Framework
Available since 1.1
Return to top
Show: