RS/2 RedTitan Script 2
POLY.RS2 uses the COL object to display a nicely formatted caption. RS/2 COL overcomes the weaknesses of the DDF/FDL formatted text in column model. 12 Basic functions
COL_CREATECreate a new formatting objectcx:=col_create;
COL_TEXTAdd a text element to the column. Repeat as required.col_text(cx,'Any string');
COL_COMPOSESet column width and choose formatting option from LJ, RJ, CJ and FILLcol_compose(cx,2400,'fill');
COL_DISPLAYDraw the formatted column on the page col_display(cx,1600,600);
COL_FREEDiscard column objectcol_free;