SORT action
Related pages:
SORT _Item1, _bAscItem1[, _Item2, _bAscItem2[, ... _Item5, _bAscItem5]]
_item1, ... | in | Column identifier of a RECORD type local variable. |
_bAscItem1, ... | out | Identifier of BOOL type - sort type (Ascending). |
_Item1
) or more columns (various, at
most 5 columns). For each column, there is specified the sort type by the
parameter _bAscItem1
(@TRUE ascending
).
RECORD (SD.RecordDef) _struct ....... ; Sorting according to the column Text in ascending order SORT _struct^Text, @TRUE ; Sorting according to the column Text in ascending order ; and simultaneously according to the column Int in descending order SORT _struct^Text, @TRUE, _struct^Int, @FALSE
Related pages:
Pridať komentár