FMX.Layouts.TGridPanelLayout.TSizeStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSizeStyle = (Absolute, Percent, Auto, Weight);

C++

enum class DECLSPEC_DENUM TSizeStyle : unsigned char { Absolute, Percent, Auto, Weight };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Layouts.pas
FMX.Layouts.hpp
FMX.Layouts TGridPanelLayout

Description

Set of sizing styles specifying the manner in which the size of the column or the row is specified for the TGridPanelLayout.

The following styles are available:

Style Description

Absolute

The number specified for the Value property defines the number of pixels for the row or column.

Auto

Ignore the number specified for the Value property. The row or column is sized automatically.

Percent

The number specified for the Value property defines a percentage in the entire grid panel.

See Also