Package | Description |
---|---|
com.vaadin.flow.component.orderedlayout |
Modifier and Type | Method and Description |
---|---|
FlexComponent.Alignment |
VerticalLayout.getAlignItems()
This is the same as
VerticalLayout.getDefaultHorizontalComponentAlignment() . |
FlexComponent.Alignment |
HorizontalLayout.getAlignItems()
This is the same as
HorizontalLayout.getDefaultVerticalComponentAlignment() . |
default FlexComponent.Alignment |
FlexComponent.getAlignItems()
Gets the default alignment used by all components without individual
alignments inside the layout.
|
FlexComponent.Alignment |
VerticalLayout.getAlignSelf(HasElement container)
This is the same as
VerticalLayout.getHorizontalComponentAlignment(Component) . |
FlexComponent.Alignment |
HorizontalLayout.getAlignSelf(HasElement container)
This is the same as
HorizontalLayout.getVerticalComponentAlignment(Component) . |
default FlexComponent.Alignment |
FlexComponent.getAlignSelf(HasElement container)
Gets the individual alignment of a given element container.
|
FlexComponent.Alignment |
VerticalLayout.getDefaultHorizontalComponentAlignment()
Gets the default horizontal alignment used by all components without
individual alignments inside the layout.
|
FlexComponent.Alignment |
HorizontalLayout.getDefaultVerticalComponentAlignment()
Gets the default vertical alignment used by all components without
individual alignments inside the layout.
|
FlexComponent.Alignment |
VerticalLayout.getHorizontalComponentAlignment(Component component)
Gets the individual horizontal alignment of a given component.
|
FlexComponent.Alignment |
HorizontalLayout.getVerticalComponentAlignment(Component component)
Gets the individual vertical alignment of a given component.
|
static FlexComponent.Alignment |
FlexComponent.Alignment.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlexComponent.Alignment[] |
FlexComponent.Alignment.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
VerticalLayout.setAlignItems(FlexComponent.Alignment alignment)
This is the same as
#setDefaultHorizontalComponentAlignment(Alignment) . |
void |
HorizontalLayout.setAlignItems(FlexComponent.Alignment alignment)
This is the same as
#setDefaultVerticalComponentAlignment(Alignment) . |
default void |
FlexComponent.setAlignItems(FlexComponent.Alignment alignment)
Sets the default alignment to be used by all components without
individual alignments inside the layout.
|
void |
VerticalLayout.setAlignSelf(FlexComponent.Alignment alignment,
HasElement... elementContainers)
This is the same as
#setHorizontalComponentAlignment(Alignment, Component...) . |
void |
HorizontalLayout.setAlignSelf(FlexComponent.Alignment alignment,
HasElement... elementContainers)
This is the same as
#setVerticalComponentAlignment(Alignment, Component...) . |
default void |
FlexComponent.setAlignSelf(FlexComponent.Alignment alignment,
HasElement... elementContainers)
Sets an alignment for individual element container inside the layout.
|
void |
VerticalLayout.setDefaultHorizontalComponentAlignment(FlexComponent.Alignment alignment)
Sets the default horizontal alignment to be used by all components
without individual alignments inside the layout.
|
void |
HorizontalLayout.setDefaultVerticalComponentAlignment(FlexComponent.Alignment alignment)
Sets the default vertical alignment to be used by all components without
individual alignments inside the layout.
|
void |
VerticalLayout.setHorizontalComponentAlignment(FlexComponent.Alignment alignment,
Component... componentsToAlign)
Sets a horizontal alignment for individual components inside the layout.
|
void |
HorizontalLayout.setVerticalComponentAlignment(FlexComponent.Alignment alignment,
Component... componentsToAlign)
Sets a vertical alignment for individual components inside the layout.
|
Copyright © 2025. All rights reserved.