Vcl.ComCtrls.TSearchType
Delphi
TSearchType = (stWholeWord, stMatchCase);
C++
enum DECLSPEC_DENUM TSearchType : unsigned char { stWholeWord, stMatchCase };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
Specifies search options.
The available options are shown in the following table:
Option | Description |
---|---|
stWholeWord |
Specifies that the search should find the whole word only, rather than extract partial search results. For example, if you search for men with this options set, the search result would not include women. |
stMatchCase |
Specifies that the search results must match the letter casing of the search term. |