Skip to content

Commit

Permalink
notes about track size priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenyagusev committed Dec 14, 2019
1 parent be9bca6 commit ff49d00
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/BookFx/Box.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public class Box
/// <code>Make.Value().SizeRows(new[] { 10, 20 }).SpanRows(5)</code>
/// will define the following row sizes: 10, 20, 10, 20, 10.
/// </para>
/// <para>A row size of an outer box has priority over a row size of an inner box.</para>
/// </summary>
/// <param name="pattern">A pattern of row sizes.</param>
[Pure]
Expand All @@ -165,6 +166,7 @@ public class Box
/// <code>Make.Value().SizeRows(10, 20).SpanRows(5)</code>
/// will define the following row sizes: 10, 20, 10, 20, 10.
/// </para>
/// <para>A row size of an outer box has priority over a row size of an inner box.</para>
/// </summary>
/// <param name="firstPatternPart">The first part of a pattern of row sizes.</param>
/// <param name="otherPatternParts">Other parts of a pattern of row sizes.</param>
Expand All @@ -180,6 +182,7 @@ public class Box
/// <code>Make.Value().SizeCols(new[] { 10, 20 }).SpanCols(5)</code>
/// will define the following column sizes: 10, 20, 10, 20, 10.
/// </para>
/// <para>A column size of an outer box has priority over a column size of an inner box.</para>
/// </summary>
/// <param name="pattern">A pattern of column sizes.</param>
[Pure]
Expand All @@ -193,6 +196,7 @@ public class Box
/// <code>Make.Value().SizeCols(10, 20).SpanCols(5)</code>
/// will define the following column sizes: 10, 20, 10, 20, 10.
/// </para>
/// <para>A column size of an outer box has priority over a column size of an inner box.</para>
/// </summary>
/// <param name="firstPatternPart">The first part of a pattern of column sizes.</param>
/// <param name="otherPatternParts">Other parts of a pattern of column sizes.</param>
Expand Down

0 comments on commit ff49d00

Please sign in to comment.