TableCell.cs 561 B

1234567891011121314151617181920
  1. using QuestPDF.Infrastructure;
  2. namespace QuestPDF.Elements.Table
  3. {
  4. internal sealed class TableCell : ContainerElement, ITableCellContainer
  5. {
  6. public int Row { get; set; } = 0;
  7. public int RowSpan { get; set; } = 1;
  8. public int Column { get; set; } = 0;
  9. public int ColumnSpan { get; set; } = 1;
  10. public int ZIndex { get; set; }
  11. public bool IsSemanticHorizontalHeader { get; set; }
  12. public int SemanticNodeId { get; set; }
  13. public bool IsRendered { get; set; }
  14. }
  15. }