CustomFileListTAddStrings Method (String) |
Adds a list of paths to the filelist.
The items are initialized to be unchecked. It is assumed that the paths do not contain
duplicates. If you want pass a filelist that may contain duplicates, use the
AddStrings(IEnumerableString, Boolean, Boolean) method.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.0
Syntaxpublic List<T> AddStrings(
string[] p_Paths
)
Public Function AddStrings (
p_Paths As String()
) As List(Of T)
public:
List<T>^ AddStrings(
array<String^>^ p_Paths
)
member AddStrings :
p_Paths : string[] -> List<'T>
Parameters
- p_Paths
- Type: SystemString
a list of absolute paths or filenames to add
Return Value
Type:
ListTa list of items that where added
See Also