Vcl.IMouse.TPanOption
Delphi
TPanOption = (poVertical, poHorizontal);
C++
enum DECLSPEC_DENUM TPanOption : unsigned char { poVertical, poHorizontal };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.IMouse.pas Vcl.IMouse.hpp |
Vcl.IMouse | Vcl.IMouse |
Description
TPanOption describes the panning option.
The TPanOption type describes the panning option of a window. The possible panning values are:
| Value | Meaning |
|---|---|
|
poVertical |
Represents vertical scroll only and is accessible to windows that were created with the WS_VSCROLL window style (windows that have a vertical scroll bar). |
|
poHorizontal |
Represents horizontal scroll only and is accessible to windows that were created with the WS_HSCROLL window style (windows that have a horizontal scroll bar). |
For more information on how these values affect the scrolling options, please see the TPanOptions type.