Starts searching for windows in system with passed parameters.
Namespace:
Greatis.NostalgiaAssembly: Greatis.Nostalgia (in Greatis.Nostalgia.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub SearchWindows ( _ searchKind As WindowKind, _ searchClass As String, _ searchText As String, _ searchExact As Boolean _ ) |
C# |
---|
public void SearchWindows( WindowKind searchKind, string searchClass, string searchText, bool searchExact ) |
Visual C++ |
---|
public: void SearchWindows( WindowKind searchKind, String^ searchClass, String^ searchText, bool searchExact ) |
JavaScript |
---|
function searchWindows(searchKind, searchClass, searchText, searchExact); |
Parameters
- searchKind
- Type: Greatis.Nostalgia..::.WindowKind
Window kind.
- searchClass
- Type: System..::.String
Window class name. Ingnored when null.
- searchText
- Type: System..::.String
Window text (caption). Ingnored when null.
- searchExact
- Type: System..::.Boolean
If true, class name and text are used for exact match, otherwise class name and text parameter interprets as substrings.