Enum Grid.AutoFlow
Controls how auto-placed items are inserted into the grid.
Corresponds to the CSS grid-auto-flow property.
public enum Grid.AutoFlow : byte
Fields
Column = 1Auto-placed items fill each column in turn, adding new columns as needed.
ColumnDense = 3Auto-placed items fill each column, using a dense packing algorithm that attempts to fill in holes earlier in the grid.
Row = 0Auto-placed items fill each row in turn, adding new rows as needed.
RowDense = 2Auto-placed items fill each row, using a dense packing algorithm that attempts to fill in holes earlier in the grid.