ShellListItem(ItemIdList, ItemIdList, String, Boolean) Constructor |
Initalizes a new ShellListItem.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic ShellListItem(
ItemIdList p_AbsoluteItemIdList,
ItemIdList p_ItemIdList,
string p_Text,
bool p_IsFolder
)
Public Sub New (
p_AbsoluteItemIdList As ItemIdList,
p_ItemIdList As ItemIdList,
p_Text As String,
p_IsFolder As Boolean
)
public:
ShellListItem(
ItemIdList^ p_AbsoluteItemIdList,
ItemIdList^ p_ItemIdList,
String^ p_Text,
bool p_IsFolder
)
new :
p_AbsoluteItemIdList : ItemIdList *
p_ItemIdList : ItemIdList *
p_Text : string *
p_IsFolder : bool -> ShellListItem
Parameters
- p_AbsoluteItemIdList ItemIdList
- The absolute ItemIdList of this shell item. If initialized with null it will be retrieved lazily when accessing the AbsoluteItemIdList property.
- p_ItemIdList ItemIdList
- The ItemIdList relative to the parent folder of this shell item.
- p_Text String
- The text that should be shown for this shell item.
- p_IsFolder Boolean
- Pass true, if this item is a folder; false otherwise.
See Also