ListSort()

Sorts the array using the criteria given returning the new sorted list

Usage

STRING = ListSort( list, type, order, delimiter )
Argument Summary
list list
type type - ('text', 'textnocase' or 'numeric')
order order - ('asc' or 'desc') [optional]
delimiter delimiter - default comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ListSort(
   list=?, 
   type=?, 
   order=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListSort( ArgumentCollection={
   list : ?, 
   type : ?, 
   order : ?, 
   delimiter : ?
} );