Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Add cells to AutoTable row

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) TextColor(Theme500) FillColor(Theme300)
#Row.addCell Value(#xContactMobilePhone) FontName('Courier') FontStyle(Italic)

* Add row to table
#Table.AddRow Row(#Row)

...