COL_CREATE | Create a new formatting object | cx:=col_create; |
COL_TEXT | Add a text element to the column. Repeat as required. | col_text(cx,'Any string'); |
COL_COMPOSE | Set column width and choose formatting option from LJ, RJ, CJ and FILL | col_compose(cx,2400,'fill'); |
COL_DISPLAY | Draw the formatted column on the page | col_display(cx,1600,600); |
COL_FREE | Discard column object | col_free; |