IElement.cs 518 B

123456789101112131415
  1. namespace QuestPDF.Infrastructure
  2. {
  3. /// <summary>
  4. /// Represents an element within the document content, for example: <br/>
  5. /// - visual elements (text, image, canvas), <br/>
  6. /// - positional elements (padding, aspect ratio), <br/>
  7. /// - flow-control elements (page break, conditional displays), <br/>
  8. /// - layout elements (table, column), <br/>
  9. /// - and other element types (section, hyperlink, content direction).
  10. /// </summary>
  11. public interface IElement
  12. {
  13. }
  14. }