Tab(Xpos,Ypos:number;Htabs:list;Vspace:number):tableHandle;

A simple, self-contained, 3-column x 4-row table.

// REDTITAN RS2 CONTROL

tx:=tab(300,600,[500,1200,1500],5);
tab_pad(tx,40);

//table headings

font(12,'Arial','bold');
tab_align(tx,'c');

tab_cell(tx,'');
tab_cell(tx,'Telephone');
tab_cell(tx,'email');
tab_nextrow(tx,true);

//table body

font(10,'Arial','');
tab_align(tx,'l');

tab_cell(tx,'UK');
tab_cell(tx,'(+44) [0]1494 811420');
tab_cell(tx,'help@redtitan.com')
tab_nextrow(tx,true);

tab_cell(tx,'USA');
tab_cell(tx,'770.924.1226');
tab_cell(tx,'help@redtitan.com')
tab_nextrow(tx,true);

tab_cell(tx,'France');
tab_cell(tx,'(+33) [0]2 32 60 20 53');
tab_cell(tx,'RTfrance@RedTitan.fr')
tab_nextrow(tx,true);

tab_cell(tx,'Germany');
tab_cell(tx,'(+49) [0] 30 60985629');
tab_cell(tx,'deutschland@redtitan.com')
tab_nextrow(tx,true);

halt(1);