-
- All Implemented Interfaces:
-
java.io.Serializable
public final class InAppComponent.Columns extends InAppComponent implements Serializable
Represents a column layout component within an in-app message.
This class defines the properties and styling options for a column layout element. It inherits from InAppComponent and implements the Column interface, indicating that it's a component and can be part of a column layout.
-
-
Field Summary
Fields Modifier and Type Field Description private final FloatArrayratiosprivate final Integerspacingprivate final InAppProperty.Marginmarginsprivate final InAppProperty.VerticalAlignmentcontentAlignprivate final List<InAppComponent.Column>childrenprivate final InAppComponent.Typetype
-
Constructor Summary
Constructors Constructor Description InAppComponent.Columns(FloatArray ratios, Integer spacing, InAppProperty.Margin margins, InAppProperty.VerticalAlignment contentAlign, List<InAppComponent.Column> children)
-
Method Summary
Modifier and Type Method Description final FloatArraygetRatios()final IntegergetSpacing()final InAppProperty.MargingetMargins()final InAppProperty.VerticalAlignmentgetContentAlign()final List<InAppComponent.Column>getChildren()final InAppComponent.TypegetType()final BooleanhasOneChildWithFillHeight()Checks if the columns have at least one fill height children. Booleanequals(Object other)IntegerhashCode()-
-
Constructor Detail
-
InAppComponent.Columns
InAppComponent.Columns(FloatArray ratios, Integer spacing, InAppProperty.Margin margins, InAppProperty.VerticalAlignment contentAlign, List<InAppComponent.Column> children)
-
-
Method Detail
-
getRatios
final FloatArray getRatios()
-
getSpacing
final Integer getSpacing()
-
getMargins
final InAppProperty.Margin getMargins()
-
getContentAlign
final InAppProperty.VerticalAlignment getContentAlign()
-
getChildren
final List<InAppComponent.Column> getChildren()
-
getType
final InAppComponent.Type getType()
-
hasOneChildWithFillHeight
final Boolean hasOneChildWithFillHeight()
Checks if the columns have at least one fill height children.
-
-
-
-