Vcl.ComCtrls.TSearchDirection
Delphi
TSearchDirection = (sdLeft, sdRight, sdAbove, sdBelow, sdAll);
C++
enum DECLSPEC_DENUM TSearchDirection : unsigned char { sdLeft, sdRight, sdAbove, sdBelow, sdAll };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
Indicates the direction in which to search for the nearest item to a specified item or point.
TSearchDirection defines the following search directions:
| Value | Meaning |
|---|---|
|
sdLeft |
Look to the left of a specified item. |
|
sdRight |
Look to the right of a specified item. |
|
sdAbove |
Look above a specified item. |
|
sdBelow |
Look below a specified item. |
|
sdAll |
Look in the order that items appear in the Items property. |