CustomFileListTAddPathToTempList Method |
Creates a new list item and adds it to the passed temporary list.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxprotected T AddPathToTempList(
string p_Path,
ItemIdList p_ItemIdList,
bool p_Checked,
bool p_ContainsDuplicates,
List<T> itemsToBeAdded
)
Protected Function AddPathToTempList (
p_Path As String,
p_ItemIdList As ItemIdList,
p_Checked As Boolean,
p_ContainsDuplicates As Boolean,
itemsToBeAdded As List(Of T)
) As T
protected:
T AddPathToTempList(
String^ p_Path,
ItemIdList^ p_ItemIdList,
bool p_Checked,
bool p_ContainsDuplicates,
List<T>^ itemsToBeAdded
)
member AddPathToTempList :
p_Path : string *
p_ItemIdList : ItemIdList *
p_Checked : bool *
p_ContainsDuplicates : bool *
itemsToBeAdded : List<'T> -> 'T Parameters
- p_Path String
- The path of the item.
- p_ItemIdList ItemIdList
- The absolute ItemIdList of the item.
- p_Checked Boolean
- The checked state of the newly created item.
- p_ContainsDuplicates Boolean
-
set this to true if the list might contain duplicates (slower)
- itemsToBeAdded ListT
- The items to be added.
Return Value
TA LIST_ITEM.
See Also