| ShellTreeNode Constructor (ItemIdList, String, ShellTreeNode, Boolean, Boolean) | 
  
    Namespace: 
   Jam.Shell
    Assembly:
   ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
 Syntax
Syntaxpublic ShellTreeNode(
	ItemIdList p_AbsoluteItemIdList,
	string p_Text,
	ShellTreeNode p_Parent,
	bool p_IsFolder,
	bool p_IsEnumerable
)
Public Sub New ( 
	p_AbsoluteItemIdList As ItemIdList,
	p_Text As String,
	p_Parent As ShellTreeNode,
	p_IsFolder As Boolean,
	p_IsEnumerable As Boolean
)
public:
ShellTreeNode(
	ItemIdList^ p_AbsoluteItemIdList, 
	String^ p_Text, 
	ShellTreeNode^ p_Parent, 
	bool p_IsFolder, 
	bool p_IsEnumerable
)
new : 
        p_AbsoluteItemIdList : ItemIdList * 
        p_Text : string * 
        p_Parent : ShellTreeNode * 
        p_IsFolder : bool * 
        p_IsEnumerable : bool -> ShellTreeNodeParameters
- p_AbsoluteItemIdList
- Type: Jam.ShellItemIdList
 Absolute ItemIdList of the shell item that this ShellTreeNode should represent.
- p_Text
- Type: SystemString
 Text that should be displayed for this ShellTreeNode
- p_Parent
- Type: Jam.ShellShellTreeNode
 The parent ShellTreeNode und which this new instance should be added.
- p_IsFolder
- Type: SystemBoolean
 pass true if the new instance should behave like a folder; otherwise passs false.
- p_IsEnumerable
- Type: SystemBoolean
 if set to true the new instance is enumerable, i.e. has or could have children.
 See Also
See Also