ListViewItem Constructor (array<ListViewItem::ListViewSubItem^>^, Int32, ListViewGroup^)
Initializes a new instance of the ListViewItem class with the image index position of the item's icon and an array of ListViewItem::ListViewSubItem objects, and assigns the item to the specified group.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: ListViewItem( array<ListViewItem::ListViewSubItem^>^ subItems, int imageIndex, ListViewGroup^ group )
Parameters
- subItems
-
Type:
array<System.Windows.Forms::ListViewItem::ListViewSubItem^>^
An array of type ListViewItem::ListViewSubItem that represents the subitems of the item.
- imageIndex
-
Type:
System::Int32
The zero-based index of the image within the ImageList associated with the ListView that contains the item.
- group
-
Type:
System.Windows.Forms::ListViewGroup^
The ListViewGroup to assign the item to.
This version of the constructor is useful when you create ListViewItem::ListViewSubItem objects before adding them to a ListViewItem object (for example, to indicate special formatting or to use the subitems in multiple items). It also allows you to specify the group to which an item belongs.
Note |
|---|
ListView groups are only available on Windows XP and the Windows Server 2003 family (Windows XP Home Edition, Windows XP Professional, Windows Server 2003). For more information, see the ListViewGroup overview topic. |
Available since 2.0
