JamBaseShellListViewFindPath Method |
Returns the ListItem for the given path.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxprotected ShellListBaseItem FindPath(
string pPath,
bool pCaptionOnly
)
Protected Function FindPath (
pPath As String,
pCaptionOnly As Boolean
) As ShellListBaseItem
protected:
ShellListBaseItem^ FindPath(
String^ pPath,
bool pCaptionOnly
)
member FindPath :
pPath : string *
pCaptionOnly : bool -> ShellListBaseItem Parameters
- pPath String
- The path or name to search for.
- pCaptionOnly Boolean
- true if the item's name should be searched for. False to look for the whole path.
Return Value
ShellListBaseItemThe ListItem that correponds to the given name or path, null if no matching item could be found.
RemarksIf pCaptionOnly the item's text is checked. If pCaptionOnly is false the FullPath of the item is checked. This will not work for items that do not have a physical path.
See Also