[CS1] Add Table
If you have tabular data that you need to lay out, then consider using the Table step. This video shows you how to use it.
The table system allows you to organize other steps into a grid. It does all the math behind the scenes for you and exports that math via the following template functions:
cellx('Table Name', column, row) | Used to find the X position of a table cell (top left corner). |
celly('Table Name', column, row) | Used to find the Y position of a table cell (top left corner). |
cellwidth('Table Name', column, row) | Used to find the width of a table cell. |
cellheight('Table Name', column, row) | Used to find the height of a table cell. |
Note that columns and rows are represented using cartesian coordinates, where the upper left corner is 0, 0.