Vcl.ComCtrls.TItemFind
Delphi
TItemFind = (ifData, ifPartialString, ifExactString, ifNearest);
C++
enum DECLSPEC_DENUM TItemFind : unsigned char { ifData, ifPartialString, ifExactString, ifNearest };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
TItemFind identifies the type of search in an OnDataFind event handler.
TItemFind can have one of the following values:
| Value | Meaning |
|---|---|
|
ifData |
Search for matching Data. |
|
ifPartialString |
Search for a partial string match. |
|
ifExactString |
Search for an exact string match. |
|
ifNearest |
Search for the nearest match. |