FMX.Layouts.TFlowJustify
Delphi
TFlowJustify = (Left, Right, Center, Justify);
C++
enum class DECLSPEC_DENUM TFlowJustify : unsigned char { Left, Right, Center, Justify };
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. |