Table of Contents

Enum Grid.AutoFlow

Namespace
Xui.Core.UI.Layout
Assembly
Xui.Core.dll

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 = 1

Auto-placed items fill each column in turn, adding new columns as needed.

ColumnDense = 3

Auto-placed items fill each column, using a dense packing algorithm that attempts to fill in holes earlier in the grid.

Row = 0

Auto-placed items fill each row in turn, adding new rows as needed.

RowDense = 2

Auto-placed items fill each row, using a dense packing algorithm that attempts to fill in holes earlier in the grid.