Forráskód Böngészése

Documentation: Inlined

Marcin Ziąbek 2 éve
szülő
commit
64b617e359
1 módosított fájl, 100 hozzáadás és 9 törlés
  1. 100 9
      Source/QuestPDF/Fluent/InlinedExtensions.cs

+ 100 - 9
Source/QuestPDF/Fluent/InlinedExtensions.cs

@@ -10,33 +10,116 @@ namespace QuestPDF.Fluent
     {
         internal Inlined Inlined { get; } = new Inlined();
         
+        #region Spacing
+        
+        /// <summary>
+        /// Sets the vertical and horizontal gaps between items.
+        /// </summary>
         public void Spacing(float value, Unit unit = Unit.Point)
         {
             VerticalSpacing(value, unit);
             HorizontalSpacing(value, unit);
         }
         
+        /// <summary>
+        /// Sets the vertical gaps between items.
+        /// </summary>
         public void VerticalSpacing(float value, Unit unit = Unit.Point)
         {
             Inlined.VerticalSpacing = value.ToPoints(unit);
         }
 
+        /// <summary>
+        /// Sets the horizontal gaps between items.
+        /// </summary>
         public void HorizontalSpacing(float value, Unit unit = Unit.Point)
         {
             Inlined.HorizontalSpacing = value.ToPoints(unit);
         }
+        
+        #endregion
+        
+        #region Baseline
+
+        /// <summary>
+        /// Positions items vertically such that their top edges align on a single line.
+        /// </summary>
+        public void BaselineTop()
+        {
+            Inlined.BaselineAlignment = VerticalAlignment.Top;
+        }
+
+        /// <summary>
+        /// Positions items to have their centers in a straight horizontal line.
+        /// </summary>
+        public void BaselineMiddle()
+        {
+            Inlined.BaselineAlignment = VerticalAlignment.Middle;
+        }
+
+        /// <summary>
+        /// Positions items vertically such that their bottom edges align on a single line.
+        /// </summary>
+        public void BaselineBottom()
+        {
+            Inlined.BaselineAlignment = VerticalAlignment.Bottom;
+        }
 
-        public void BaselineTop() => Inlined.BaselineAlignment = VerticalAlignment.Top;
-        public void BaselineMiddle() => Inlined.BaselineAlignment = VerticalAlignment.Middle;
-        public void BaselineBottom() => Inlined.BaselineAlignment = VerticalAlignment.Bottom;
+        #endregion
 
-        internal void Alignment(InlinedAlignment? alignment) => Inlined.ElementsAlignment = alignment;
-        public void AlignLeft() => Inlined.ElementsAlignment = InlinedAlignment.Left;
-        public void AlignCenter() => Inlined.ElementsAlignment = InlinedAlignment.Center;
-        public void AlignRight() => Inlined.ElementsAlignment = InlinedAlignment.Right;
-        public void AlignJustify() => Inlined.ElementsAlignment = InlinedAlignment.Justify;
-        public void AlignSpaceAround() => Inlined.ElementsAlignment = InlinedAlignment.SpaceAround;
+        #region Horizontal Alignment
         
+        internal void Alignment(InlinedAlignment? alignment)
+        {
+            Inlined.ElementsAlignment = alignment;
+        }
+
+        /// <summary>
+        /// Aligns items horizontally to the left side.
+        /// </summary>
+        public void AlignLeft()
+        {
+            Inlined.ElementsAlignment = InlinedAlignment.Left;
+        }
+
+        /// <summary>
+        /// Aligns items horizontally to the center.
+        /// </summary>
+        public void AlignCenter()
+        {
+            Inlined.ElementsAlignment = InlinedAlignment.Center;
+        }
+
+        /// <summary>
+        /// Aligns items horizontally to the left right.
+        /// </summary>
+        public void AlignRight()
+        {
+            Inlined.ElementsAlignment = InlinedAlignment.Right;
+        }
+
+        /// <summary>
+        /// Distributes items horizontally, ensuring even spacing from edge to edge of the container.
+        /// </summary>
+        public void AlignJustify()
+        {
+            Inlined.ElementsAlignment = InlinedAlignment.Justify;
+        }
+        
+        /// <summary>
+        /// Spaces items equally in a horizontal arrangement, both between items and at the ends.
+        /// </summary>
+        public void AlignSpaceAround()
+        {
+            Inlined.ElementsAlignment = InlinedAlignment.SpaceAround;
+        }
+
+        #endregion
+
+        /// <summary>
+        /// Adds a new item to the container.
+        /// </summary>
+        /// <returns>The container of the newly created item.</returns>
         public IContainer Item()
         {
             var container = new InlinedElement();
@@ -47,6 +130,14 @@ namespace QuestPDF.Fluent
     
     public static class InlinedExtensions
     {
+        /// <summary>
+        /// Arranges its items sequentially in a line, wrapping to the next line if necessary.
+        /// <a href="https://www.questpdf.com/api-reference/inlined.html">Learn more</a>
+        /// </summary>
+        /// <remarks>
+        /// Supports the paging functionality.
+        /// </remarks>
+        /// <param name="handler">Handler to configure content of this container, as well as spacing and items alignment.</param>
         public static void Inlined(this IContainer element, Action<InlinedDescriptor> handler)
         {
             var descriptor = new InlinedDescriptor();