Interface GridLayoutTagDeclaration

  • All Superinterfaces:
    HasBinding, HasColumnLayout, HasId, HasRowLayout, HasSpacing, IsVisual

    public interface GridLayoutTagDeclaration
    extends HasId, HasSpacing, HasColumnLayout, HasRowLayout, HasBinding, IsVisual
    Renders a grid-layout. The grid is defined by the columns and rows attributes. You can adjust the widths of the columns and rows by value of the tokens. The number of tokens describe the number of columns and rows.
     columns/rows ::= LAYOUT
     LAYOUT       ::= TOKEN [" " TOKEN]+
     TOKEN        ::= "auto" | MEASURE | FRACTION
     MEASURE      ::= [NUMBER] ("px" | "em" | "ex" | "rem" | ...)
     FRACTION     ::= [POSITIVE_INTEGER] "fr"