FMX.Layouts.TFlowLayoutBreak.FlowDirection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FlowDirection: TFlowDirection read FRules.Direction write FRules.Direction;

C++

__property TFlowDirection FlowDirection = {read=FRules.Direction, write=FRules.Direction, nodefault};

Properties

Type Visibility Source Unit Parent
property published
FMX.Layouts.pas
FMX.Layouts.hpp
FMX.Layouts TFlowLayoutBreak

Description

Specifies the direction in which the controls from the next lines of a TFlowLayout are arranged.

The direction of the controls flow can be from left to right or from right to left. Changing the direction does not change the line of the control, only the order of the controls on the following lines.

This property has effect only if ChangesRules is set to True. With ChangesRules set to True, FlowDirection affects all the controls added to a TFlowLayout after a TFlowLayoutBreak, until all controls are displayed or other TFlowLayoutBreak if found.

See Also