ShellTreeNode Constructor (ItemIdList, String, ShellTreeNode, Boolean) |
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public ShellTreeNode(
ItemIdList p_AbsoluteItemIdList,
string p_Text,
ShellTreeNode p_Parent,
bool p_IsFolder
)
Public Sub New (
p_AbsoluteItemIdList As ItemIdList,
p_Text As String,
p_Parent As ShellTreeNode,
p_IsFolder As Boolean
)
public:
ShellTreeNode(
ItemIdList^ p_AbsoluteItemIdList,
String^ p_Text,
ShellTreeNode^ p_Parent,
bool p_IsFolder
)
new :
p_AbsoluteItemIdList : ItemIdList *
p_Text : string *
p_Parent : ShellTreeNode *
p_IsFolder : bool -> ShellTreeNode
Parameters
- 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.
See Also