FMX.Layouts.TFlowLayoutRules

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TFlowLayoutRules = record
    Justify : TFlowJustify;
    JustifyLast : TFlowJustify;
    Direction : TFlowDirection;
    HorizontalGap : Single;
    VerticalGap : Single;
  end;

C++

struct DECLSPEC_DRECORD TFlowLayoutRules
{
public:
    TFlowJustify Justify;
    TFlowJustify JustifyLast;
    TFlowDirection Direction;
    float HorizontalGap;
    float VerticalGap;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Layouts.pas
FMX.Layouts.hpp
FMX.Layouts FMX.Layouts

Description

Record that stores the rules followed by TFlowLayout.

Field Meaning

Justify

Specifies the justification of all but the last line. If there is only one line, it has no effect.

JustifyLast

Specifies the justification of the last line. If there is only one line, it has effect.

Direction

Specifies the direction in which the controls are arranged.

HorizontalGap

Specifies the minimum distance between two adjacent controls.

VerticalGap

Specifies the minimum vertical distance between two adjacent lines.

See Also