public static int GetOrder(Layoutable layoutable) { if (layoutable is null) { throw new ArgumentNullException(nameof(layoutable)); } return(layoutable.GetValue(OrderProperty)); }
public static AlignItems?GetAlignSelf(Layoutable layoutable) { if (layoutable is null) { throw new ArgumentNullException(nameof(layoutable)); } return(layoutable.GetValue(AlignSelfProperty)); }