FMX.Layouts.TFlowJustify
Delphi
TFlowJustify = (Left, Right, Center, Justify);
C++
enum class DECLSPEC_DENUM TFlowJustify : unsigned char { Left, Right, Center, Justify, fjLeft _DEPRECATED_ATTRIBUTE3("Use TFlowJustify.Left")  = 0, fjRight _DEPRECATED_ATTRIBUTE3("Use TFlowJustify.Right")  = 1, fjCenter _DEPRECATED_ATTRIBUTE3("Use TFlowJustify.Center")  = 2, fjJustify _DEPRECATED_ATTRIBUTE3("Use TFlowJustify.Justify")  = 3 };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | FMX.Layouts.pas FMX.Layouts.hpp | FMX.Layouts | FMX.Layouts | 
Description
Specifies the alignment of child controls within a TFlowLayout.
The following table lists the possible values of the TFlowJustify type.
| Value | Meaning | Example | 
|---|---|---|
| 
 | The child controls of the layout stick to the left edge of the layout. | |
| 
 | The child controls of the layout stick to the right edge of the layout. | |
| 
 | The child controls of the layout are centered within the layout. | |
| 
 | Adds an empty space between the child controls of the layout to even fill the width of the layout. | 



