ExplorerBrowserIndexOf(String) Method |
Searches for the index of the given path within the shell-list.
This function has O(n) complexity, since it iterates through all items within the list
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic int IndexOf(
string pPath
)
Public Function IndexOf (
pPath As String
) As Integer
public:
int IndexOf(
String^ pPath
)
member IndexOf :
pPath : string -> int Parameters
- pPath String
- The path that will be searched
Return Value
Int32The index of the item, -1 if the item is not in the list
See Also