ListViewItem.ListViewSubItemCollection.IndexOf Method

Definition

Returns the index within the collection of the specified subitem.

public:
 int IndexOf(System::Windows::Forms::ListViewItem::ListViewSubItem ^ subItem);
public int IndexOf (System.Windows.Forms.ListViewItem.ListViewSubItem subItem);
public int IndexOf (System.Windows.Forms.ListViewItem.ListViewSubItem? subItem);
member this.IndexOf : System.Windows.Forms.ListViewItem.ListViewSubItem -> int
Public Function IndexOf (subItem As ListViewItem.ListViewSubItem) As Integer

Parameters

subItem
ListViewItem.ListViewSubItem

A ListViewItem.ListViewSubItem representing the subitem to locate in the collection.

Returns

The zero-based index of the subitem's location in the collection. If the subitem is not located in the collection, the return value is negative one (-1).

Remarks

The IndexOf method enables you to determine the position of a subitem in the collection. To determine whether a subitem is contained in the collection before calling this method, use the Contains method.

Applies to

See also