Enum Grid.TrackSizeKind
Identifies the kind of sizing function a Grid.TrackSize represents.
public enum Grid.TrackSizeKind : byte
Fields
Auto = 0Sized to available space (
auto).FitContent = 6Like MaxContent but clamped to a maximum (
fit-content()).Fr = 4Flexible fractional unit (
fr).Length = 3Fixed pixel length.
MaxContent = 2Sized to largest content contribution (
max-content).MinContent = 1Sized to smallest content contribution (
min-content).MinMax = 5Clamped between a min and a max (
minmax()).