Reverse sorting of table rows by the given column or by the key column (if no arguments). You can specify up to 7 columns.

Columns can be specified both by numeric index and by title. It is possible one by number, others by name at the same time.

Call:

ts_table(int iTableDescr, "sort_back", int icolnum1, int icolnum2, ... ,int icolnum7);

or

ts_table(int iTableDescr, "sort_back", string scolname1, string scolname2, ... ,string scolname7);


Here:

icolumn1... icolumn7 - numeric indexes of the columns to sort by.

scolname1... icolname7 - textual column names.



Example. Sort table by column #0

ts_table(TableDescr1,"sort_back",0);


Example. Sort the table by the key column specified earlier.

ts_table(TableDescr1,"sort_back");