|
@@ -17,6 +17,13 @@ public enum Justification
|
|
|
/// </example>
|
|
|
Left,
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// The items will be aligned to the top.
|
|
|
+ /// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one line between
|
|
|
+ /// each item.
|
|
|
+ /// </summary>
|
|
|
+ Top = Left,
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// The items will be aligned to the right.
|
|
|
/// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one space between
|
|
@@ -29,6 +36,13 @@ public enum Justification
|
|
|
/// </example>
|
|
|
Right,
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// The items will be aligned to the bottom.
|
|
|
+ /// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one line between
|
|
|
+ /// each item.
|
|
|
+ /// </summary>
|
|
|
+ Bottom = Right,
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// The group will be centered in the container.
|
|
|
/// If centering is not possible, the group will be left-justified.
|
|
@@ -67,6 +81,13 @@ public enum Justification
|
|
|
/// </example>
|
|
|
FirstLeftRestRight,
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// The first item will be aligned to the top and the remaining will aligned to the bottom.
|
|
|
+ /// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one line between
|
|
|
+ /// each item.
|
|
|
+ /// </summary>
|
|
|
+ FirstTopRestBottom = FirstLeftRestRight,
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// The last item will be aligned to the right and the remaining will aligned to the left.
|
|
|
/// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one space between
|
|
@@ -77,7 +98,14 @@ public enum Justification
|
|
|
/// 111 2222 33333
|
|
|
/// </c>
|
|
|
/// </example>
|
|
|
- LastRightRestLeft
|
|
|
+ LastRightRestLeft,
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The last item will be aligned to the bottom and the remaining will aligned to the left.
|
|
|
+ /// Set <see cref="Justifier.PutSpaceBetweenItems"/> to <see langword="true"/> to ensure at least one line between
|
|
|
+ /// each item.
|
|
|
+ /// </summary>
|
|
|
+ LastBottomRestTop,
|
|
|
}
|
|
|
|
|
|
/// <summary>
|