UniformGridLayoutItemsJustification Enum

Summary

Defines constants that specify how items are aligned on the non-scrolling or non-virtualizing axis.
Namespace
Avalonia.Layout
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["UniformGridLayoutItemsJustification"] class Type type-node

Syntax

public enum UniformGridLayoutItemsJustification

Fields

Name Constant Value Summary
Center 1
Items are aligned in the center of the row or column, with extra space at the start and end. Spacing between items does not change.
static
End 2
Items are aligned with the end of the row or column, with extra space at the start. Spacing between items does not change.
static
SpaceAround 3
Items are aligned so that extra space is added evenly before and after each item.
static
SpaceBetween 4
Items are aligned so that extra space is added evenly between adjacent items. No space is added at the start or end.
static
SpaceEvenly 5
static
Start 0
Items are aligned with the start of the row or column, with extra space at the end. Spacing between items does not change.
static

Extension Methods