ListViewGroupCollection.IndexOf(ListViewGroup) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the index of the specified ListViewGroup within the collection.
public:
int IndexOf(System::Windows::Forms::ListViewGroup ^ value);
public int IndexOf (System.Windows.Forms.ListViewGroup value);
member this.IndexOf : System.Windows.Forms.ListViewGroup -> int
Public Function IndexOf (value As ListViewGroup) As Integer
Parameters
- value
- ListViewGroup
The ListViewGroup to locate in the collection.
Returns
The zero-based index of the group within the collection, or -1 if the group is not in the collection.
Remarks
Use this method to determine the index of a group within the collection. This is useful, for example, to determine the index of each group when you iterate through the collection using the IEnumerator returned by the GetEnumerator method.