ShellTreeViewSelectSubFolder Method |
Selects a sub folder (if existant) of the name given as a parameter
if p_FolderName is null an ArgumentNullException is thrown.
if no node is currently selected nothing happens and false is returned.
if no sub folder of the given name exists the method returns false as well.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic bool SelectSubFolder(
string p_FolderName
)
Public Function SelectSubFolder (
p_FolderName As String
) As Boolean
public:
bool SelectSubFolder(
String^ p_FolderName
)
member SelectSubFolder :
p_FolderName : string -> bool
Parameters
- p_FolderName String
- the foldername to search for in the child-ShellTreeNode of the currently selected node.
Return Value
Booleantrue if p_FolderName could be selected as a subfolder
See Also