FMX.Layouts.TFlowDirection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFlowDirection = (LeftToRight, RightToLeft);

C++

enum class DECLSPEC_DENUM TFlowDirection : unsigned char { LeftToRight, RightToLeft, fdLeftToRight _DEPRECATED_ATTRIBUTE3("Use TFlowDirection.LeftToRight")  = 0x0, fdRightToLeft _DEPRECATED_ATTRIBUTE3("Use TFlowDirection.RightToLeft")  = 0x1 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Layouts.pas
FMX.Layouts.hpp
FMX.Layouts FMX.Layouts

Description

Specifies the direction in which the controls are arranged within a TFlowLayout.

The following table lists the possible values of the TFlowDirection type.

Value Meaning

LeftToRight

The controls are arranged from left to right.

RightToLeft

The controls are arranged from right to left.

See Also