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 Getting Started with Layout API article provides essential information on how to generate PDFs with the API.
Check out the other articles and code samples on the C# PDF generation library page.
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.