CustomFileListTAdd Method (String, Boolean, Boolean) |
Adds a file or path to the list.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.0
Syntaxpublic T Add(
string p_Path,
bool p_Checked,
bool p_CheckDuplicates
)
Public Function Add (
p_Path As String,
p_Checked As Boolean,
p_CheckDuplicates As Boolean
) As T
public:
T Add(
String^ p_Path,
bool p_Checked,
bool p_CheckDuplicates
)
member Add :
p_Path : string *
p_Checked : bool *
p_CheckDuplicates : bool -> 'T
Parameters
- p_Path
- Type: SystemString
The item to add. - p_Checked
- Type: SystemBoolean
Whether the item is marked or not. - p_CheckDuplicates
- Type: SystemBoolean
If true, checks for a duplicate path already contained in the list.
Return Value
Type:
Tthe item that was added, null if CheckIfExists was enabled and the file has not been found.
See Also