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.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public 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
- Type: SystemString
the foldername to search for in the child-ShellTreeNode of the currently selected node.
Return Value
Type:
Booleantrue if p_FolderName could be selected as a subfolder
See Also