FMX.Layouts.TFlowJustify

From RAD Studio API Documentation
Jump to: navigation, search

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

Left

The child controls of the layout stick to the left edge of the layout.

FjLeft.png

Right

The child controls of the layout stick to the right edge of the layout.

FjRight.png

Center

The child controls of the layout are centered within the layout.

FjCenter.png

Justify

Adds an empty space between the child controls of the layout to even fill the width of the layout.

FjJustify.png

See Also