Uses of Class
com.vaadin.flow.component.orderedlayout.FlexComponent.Alignment
-
Packages that use FlexComponent.Alignment Package Description com.vaadin.flow.component.orderedlayout -
-
Uses of FlexComponent.Alignment in com.vaadin.flow.component.orderedlayout
Methods in com.vaadin.flow.component.orderedlayout that return FlexComponent.Alignment Modifier and Type Method Description default FlexComponent.AlignmentFlexComponent. getAlignItems()Gets the default alignment used by all components without individual alignments inside the layout.FlexComponent.AlignmentHorizontalLayout. getAlignItems()This is the same asHorizontalLayout.getDefaultVerticalComponentAlignment().FlexComponent.AlignmentVerticalLayout. getAlignItems()This is the same asVerticalLayout.getDefaultHorizontalComponentAlignment().default FlexComponent.AlignmentFlexComponent. getAlignSelf(HasElement container)Gets the individual alignment of a given element container.FlexComponent.AlignmentHorizontalLayout. getAlignSelf(HasElement container)This is the same asHorizontalLayout.getVerticalComponentAlignment(Component).FlexComponent.AlignmentVerticalLayout. getAlignSelf(HasElement container)This is the same asVerticalLayout.getHorizontalComponentAlignment(Component).FlexComponent.AlignmentVerticalLayout. getDefaultHorizontalComponentAlignment()Gets the default horizontal alignment used by all components without individual alignments inside the layout.FlexComponent.AlignmentHorizontalLayout. getDefaultVerticalComponentAlignment()Gets the default vertical alignment used by all components without individual alignments inside the layout.FlexComponent.AlignmentVerticalLayout. getHorizontalComponentAlignment(Component component)Gets the individual horizontal alignment of a given component.FlexComponent.AlignmentHorizontalLayout. getVerticalComponentAlignment(Component component)Gets the individual vertical alignment of a given component.static FlexComponent.AlignmentFlexComponent.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.Methods in com.vaadin.flow.component.orderedlayout with parameters of type FlexComponent.Alignment Modifier and Type Method Description default voidFlexComponent. setAlignItems(FlexComponent.Alignment alignment)Sets the default alignment to be used by all components without individual alignments inside the layout.voidHorizontalLayout. setAlignItems(FlexComponent.Alignment alignment)This is the same asHorizontalLayout.setDefaultVerticalComponentAlignment(Alignment).voidVerticalLayout. setAlignItems(FlexComponent.Alignment alignment)This is the same asVerticalLayout.setDefaultHorizontalComponentAlignment(Alignment).default voidFlexComponent. setAlignSelf(FlexComponent.Alignment alignment, HasElement... elementContainers)Sets an alignment for individual element container inside the layout.voidHorizontalLayout. setAlignSelf(FlexComponent.Alignment alignment, HasElement... elementContainers)This is the same asHorizontalLayout.setVerticalComponentAlignment(Alignment, Component...).voidVerticalLayout. setAlignSelf(FlexComponent.Alignment alignment, HasElement... elementContainers)This is the same asVerticalLayout.setHorizontalComponentAlignment(Alignment, Component...).voidVerticalLayout. setDefaultHorizontalComponentAlignment(FlexComponent.Alignment alignment)Sets the default horizontal alignment to be used by all components without individual alignments inside the layout.voidHorizontalLayout. setDefaultVerticalComponentAlignment(FlexComponent.Alignment alignment)Sets the default vertical alignment to be used by all components without individual alignments inside the layout.voidVerticalLayout. setHorizontalComponentAlignment(FlexComponent.Alignment alignment, Component... componentsToAlign)Sets a horizontal alignment for individual components inside the layout.voidHorizontalLayout. setVerticalComponentAlignment(FlexComponent.Alignment alignment, Component... componentsToAlign)Sets a vertical alignment for individual components inside the layout.
-