ShellTreeViewCreateShellTreeNode Method  | 
 
            This methods creates a new ShellTreeNode but does not yet include it in the parentNode.
            
 
    Namespace: 
   Jam.Shell
    Assembly:
   ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntaxprotected ShellTreeNode CreateShellTreeNode(
	ShellTreeNode p_Parent,
	ShellBrowser pShellBrowser
)
Protected Function CreateShellTreeNode ( 
	p_Parent As ShellTreeNode,
	pShellBrowser As ShellBrowser
) As ShellTreeNode
protected:
ShellTreeNode^ CreateShellTreeNode(
	ShellTreeNode^ p_Parent, 
	ShellBrowser^ pShellBrowser
)
member CreateShellTreeNode : 
        p_Parent : ShellTreeNode * 
        pShellBrowser : ShellBrowser -> ShellTreeNode 
Parameters
- p_Parent
 - Type: Jam.ShellShellTreeNode
The parent ShellTreeNode of the item to be added. - pShellBrowser
 - Type: Jam.ShellShellBrowser
A ShellBrowser instance to use. 
Return Value
Type: 
ShellTreeNode
            The new created ShellTreeNode instance is returned.
            Null, if the ShowOptionsShouldShow determined not to include the node or if the AddTreeNode event had the 
CanAdd set to false.
            
See Also