Vcl.ComCtrls.TCustomUpDown.Orientation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Orientation: TUDOrientation read FOrientation write SetOrientation default udVertical;

C++

__property TUDOrientation Orientation = {read=FOrientation, write=SetOrientation, default=1};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomUpDown

Description

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