TileLayoutFlowMode
Union
The flow modes controls how auto-placed items are arranged in the TileLayout. For further reference, check the grid-auto-flow CSS article.
The available values are:
column(Default)—Sets the grid-auto-flow CSS property of the TileLayout to column.column-dense—Sets the grid-auto-flow CSS property of the TileLayout to column dense.
*row—Sets the grid-auto-flow CSS property of the TileLayout to row.
*row-dense—Sets the grid-auto-flow CSS property of the TileLayout to row dense.
*none—Does not apply the grid-auto-flow CSS property. In this case the default behavior of the CSS Grid Layout will be used.
Possible values:
"none""row""column""row-dense""column-dense"