CustomFileListTAddPathToTempList Method |
Creates a new list item and adds it to the passed temporary list.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax protected 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
- Type: SystemString
The path of the item. - p_ItemIdList
- Type: Jam.ShellItemIdList
The absolute ItemIdList of the item. - p_Checked
- Type: SystemBoolean
The checked state of the newly created item. - p_ContainsDuplicates
- Type: SystemBoolean
set this to true if the list might contain duplicates (slower)
- itemsToBeAdded
- Type: System.Collections.GenericListT
The items to be added.
Return Value
Type:
TA LIST_ITEM.
See Also