| 1234567891011121314151617181920 |
- using QuestPDF.Infrastructure;
- namespace QuestPDF.Elements.Table
- {
- internal sealed class TableCell : ContainerElement, ITableCellContainer
- {
- public int Row { get; set; } = 0;
- public int RowSpan { get; set; } = 1;
- public int Column { get; set; } = 0;
- public int ColumnSpan { get; set; } = 1;
-
- public int ZIndex { get; set; }
-
- public bool IsSemanticHorizontalHeader { get; set; }
- public int SemanticNodeId { get; set; }
-
- public bool IsRendered { get; set; }
- }
- }
|