FGX.Layout.Types.TfgJustifyContent: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
 
(summary)
Строка 4: Строка 4:
  
 
<syntaxhighlight lang="Delphi">TfgJustifyContent = (FlexStart, FlexEnd, Center, SpaceBetween, SpaceAround, SpaceEvenly)</syntaxhighlight>
 
<syntaxhighlight lang="Delphi">TfgJustifyContent = (FlexStart, FlexEnd, Center, SpaceBetween, SpaceAround, SpaceEvenly)</syntaxhighlight>
 +
 +
== Описание ==
 +
 +
<p>The JustifyContent property describes how to align children within the main axis of a container. For example, you can use this property to center a child horizontally within a container with FlexDirection = Row or vertically within a container with FlexDirection = Column.</p>

Версия 02:44, 13 июня 2019

Delphi

TfgJustifyContent = (FlexStart, FlexEnd, Center, SpaceBetween, SpaceAround, SpaceEvenly)

Описание

The JustifyContent property describes how to align children within the main axis of a container. For example, you can use this property to center a child horizontally within a container with FlexDirection = Row or vertically within a container with FlexDirection = Column.