Class Table
- Namespace
- BitMiracle.Docotic.Pdf.Layout
- Assembly
- BitMiracle.Docotic.Pdf.Layout.dll
The table element.
public sealed class Table
- Inheritance
-
Table
- Inherited Members
Remarks
Tables might have three parts: header, footer, and body. Tables have schema defining what columns to use in all parts.
Read the Table container article for the detailed information about tables.
The .NET PDF generator article provides essential information on how to generate PDFs with the API.
Methods
- Cell()
Adds cell to the next column in the table body.
- Cell(Action<TableCell>)
Adds cell to a specific position in the table body.
- Columns(Action<TableColumnContainer>)
Sets columns for this table.
- ExtendCellsToBottom()
Marks bottom cells of the table body to cover remaining vertical space.
- Footer(Action<TableCellContainer>)
Defines content of the table footer.
- Header(Action<TableCellContainer>)
Defines content of the table header.