Vcl.IMouse.TPanOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TPanOptions = set of TPanOption;

C++

typedef System::Set<TPanOption, TPanOption::poVertical, TPanOption::poHorizontal> TPanOptions;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.IMouse.pas
Vcl.IMouse.hpp
Vcl.IMouse Vcl.IMouse

Description

Set of TPanOption.

TPanOptions is a set of TPanOption types. At any time, the set can have one of the following values:


Value Meaning

None

The window has no scoll bars, so no panning is possible.

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).

poVertical, poHorizontal

Represents vertical and horizontal scroll and is accessible to windows that were created with the WS_HSCROLL and WS_VSCROLL window styles (windows that have both a horizontal and a vertical scroll bar).



See Also