Click or drag to resize

ShellSearchEditSearch Method

Starts the search in the current folder.

Namespace:  Jam.Shell
Assembly:  ShellBrowser (in ShellBrowser.dll) Version: 7.0
Syntax
public void Search(
	string pQuery
)

Parameters

pQuery
Type: SystemString
The search expression. Advanced Query Syntax is supported. If empty nothing will be searched.
Remarks
Examples
The following example shows how to search for all .exe files in the current folder and subfolders:
Search('*.exe');
Examples
The following example shows how to search for all files greater than 1 GB in the current folder and subfolders:
Search('System.Size:>1GB');
Examples
The following example shows how to search for all pictures in the current folder and subfolders:
Search('System.Kind:=picture');
See Also