Vcl.ComCtrls.TUpDown.Orientation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Orientation: TUDOrientation read FOrientation write SetOrientation default 1;

C++

__property Orientation = {default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TUpDown

Description

Specifies the direction that the arrow keys point.

Vcl.ComCtrls.TUpDown.Orientation inherits from Vcl.ComCtrls.TCustomUpDown.Orientation. All content below this line refers to Vcl.ComCtrls.TCustomUpDown.Orientation.

Specifies the direction that the arrow keys point.

Use Orientation to determine the orientation of the arrow buttons. These are the possible values:



Value Meaning

udHorizontal

The arrow buttons point to the left and right, and appear side by side.

udVertical

The arrow buttons point up and down and are stacked vertically.



Note: Even when the Orientation is udHorizontal, the up-down control can respond only to the Up and Down arrow keys.

See Also