Page History
...
Define_Com Class(#PRIM_PDF.AutoTable) Name(#Table) Reference(*DYNAMIC) Theme(Striped) Columncount(3)
Define_Com Class(#PRIM_PDF.AutoTableRow) Name(#Row) Reference(*DYNAMIC)
* Create row
#Row <= #Table.CreateRow
* Add cells to row (must match table column count)
#Row.addCell Value(#xContactLastName)
#Row.addCell Value(#xContactFirstName)
#Row.addCell Value(#xContactMobilePhone)
* Add row to table
#Table.AddRow Row(#Row)
...
Name | Description |
|---|---|
Adds a cell to the table row Value, HAlign, VAlign, FontStyle, FontName, FontSize, TextColor, FillColor | |
Adds an image cell to the table row Bitmap, ImageFileFormat, Width, Height, ImageCompression, Rotation, HAlign, VAlign, FillColor |