Vcl.ExtCtrls.TFlowStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFlowStyle = (fsLeftRightTopBottom, fsRightLeftTopBottom, fsLeftRightBottomTop, fsRightLeftBottomTop,
fsTopBottomLeftRight, fsBottomTopLeftRight, fsTopBottomRightLeft, fsBottomTopRightLeft);

C++

enum DECLSPEC_DENUM TFlowStyle : unsigned char { fsLeftRightTopBottom, fsRightLeftTopBottom, fsLeftRightBottomTop, fsRightLeftBottomTop, fsTopBottomLeftRight, fsBottomTopLeftRight, fsTopBottomRightLeft, fsBottomTopRightLeft };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls Vcl.ExtCtrls

Description

Specifies the flow style to automatically align a set of controls.

TFlowStyle is a set of options that specify the flow style of different graphical controls on a form, used to automatically align a set of controls.

Item Meaning

fsLeftRightTopBottom

Order is left to right and top to bottom.

fsRightLeftTopBottom

Order is right to left and top to bottom.

fsLeftRightBottomTop

Order is left to right and bottom to top.

fsRightLeftBottomTop

Order is right to left and bottom to top.

fsTopBottomLeftRight

Order is top to bottom and left to right.

fsBottomTopLeftRight

Order is bottom to top and left to right.

fsTopBottomRightLeft

Order is top to bottom and right to left.

fsBottomTopRightLeft

Order is bottom to top and right to left.

Code Examples

See Also