Layouts\GridLayoutManager.cs (21)
211 var columnGridLengthType = GridLengthType.None;
221 var rowGridLengthType = GridLengthType.None;
1044 if (cell.ColumnGridLengthType == GridLengthType.Absolute)
1058 if (cell.RowGridLengthType == GridLengthType.Absolute)
1146 public GridLengthType ColumnGridLengthType { get; }
1151 public GridLengthType RowGridLengthType { get; }
1154 GridLengthType columnGridLengthType, GridLengthType rowGridLengthType)
1165 public bool IsColumnSpanAuto => HasFlag(ColumnGridLengthType, GridLengthType.Auto);
1166 public bool IsRowSpanAuto => HasFlag(RowGridLengthType, GridLengthType.Auto);
1167 public bool IsColumnSpanStar => HasFlag(ColumnGridLengthType, GridLengthType.Star);
1168 public bool IsRowSpanStar => HasFlag(RowGridLengthType, GridLengthType.Star);
1170 static bool HasFlag(GridLengthType a, GridLengthType b)
1186 static GridLengthType ToGridLengthType(GridUnitType gridUnitType)
1190 GridUnitType.Absolute => GridLengthType.Absolute,
1191 GridUnitType.Star => GridLengthType.Star,
1192 GridUnitType.Auto => GridLengthType.Auto,
1193 _ => GridLengthType.None,