ShellListItem Constructor (ItemIdList, ItemIdList, String, Boolean) |
Initalizes a new ShellListItem.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public 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
- Type: Jam.ShellItemIdList
The absolute ItemIdList of this shell item. If initialized with null it will be retrieved lazily when accessing the AbsoluteItemIdList property. - p_ItemIdList
- Type: Jam.ShellItemIdList
The ItemIdList relative to the parent folder of this shell item. - p_Text
- Type: SystemString
The text that should be shown for this shell item. - p_IsFolder
- Type: SystemBoolean
Pass true, if this item is a folder; false otherwise.
See Also