Creates a "search folder" with a specified search query and scope and returns this folder as ItemIdList.
Namespace: Jam.ShellAssembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
Syntaxpublic SearchFolder(
string pQuery,
ItemIdList pSearchScope,
bool pSearchContents = true
)
Public Sub New (
pQuery As String,
pSearchScope As ItemIdList,
Optional pSearchContents As Boolean = true
)
public:
SearchFolder(
String^ pQuery,
ItemIdList^ pSearchScope,
bool pSearchContents = true
)
new :
pQuery : string *
pSearchScope : ItemIdList *
?pSearchContents : bool
(* Defaults:
let _pSearchContents = defaultArg pSearchContents true
*)
-> SearchFolderParameters
- pQuery String
- The search expression.
- pSearchScope ItemIdList
- The folder where the search should be started.
- pSearchContents Boolean (Optional)
- Set to false to only search in the name column, not the file contents.
Return Value
The search folder.
RemarksAssign result only to variables of type IItemIdList!
See Also