| ExplorerBrowserIndexOf Method  | 
 
            Searches for the index of the ItemIdList within the listview. This function has O(n) complexity, since it iterates through all items within the list.
            
 
    Namespace: 
   Jam.Shell.WPF.Controls
    Assembly:
   ShellBrowserWPF (in ShellBrowserWPF.dll) Version: 1.3.1
 Syntax
Syntaxpublic int IndexOf(
	ItemIdList pItemIdList
)
Public Function IndexOf ( 
	pItemIdList As ItemIdList
) As Integer
public:
int IndexOf(
	ItemIdList^ pItemIdList
)
member IndexOf : 
        pItemIdList : ItemIdList -> int 
Parameters
- pItemIdList
- Type: Jam.ShellItemIdList
 The ItemIdList that will be searched.
Return Value
Type: 
Int32The index of the item or -1 if the item is not in the list.
 See Also
See Also