ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
JamShellBreadCrumbBar.TJamShellSearchEdit.Search

Starts the search in the current folder.

Syntax
Pascal
procedure Search(const pQuery: string);
Parameters 
Description 
const pQuery: string 
The search expression. Advanced Query Syntax is supported. If empty nothing will be searched.  

The following example shows how to search for all .exe files in the current folder and subfolders:

  Search('*.exe');

The following example shows how to search for all files greater than 1 GB in the current folder and subfolders:

  Search('System.Size:>1GB');

The following example shows how to search for all pictures in the current folder and subfolders:

  Search('System.Kind:=picture');