Browse Source

Documentation: IElement

Marcin Ziąbek 2 years ago
parent
commit
87b7304ace
1 changed files with 8 additions and 0 deletions
  1. 8 0
      Source/QuestPDF/Infrastructure/IElement.cs

+ 8 - 0
Source/QuestPDF/Infrastructure/IElement.cs

@@ -1,5 +1,13 @@
 namespace QuestPDF.Infrastructure
 {
+    /// <summary>
+    /// Represents an element within the document content, for example: <br/>
+    /// - visual elements (text, image, canvas), <br/>
+    /// - positional elements (padding, aspect ratio), <br/>
+    /// - flow-control elements (page break, conditional displays), <br/>
+    /// - layout elements (table, column), <br/>
+    /// - and other element types (section, hyperlink, content direction). 
+    /// </summary>
     public interface IElement
     {