Sort an item in a list to another index. In list_SortA, the item to be sorted is specified by its name (compare: list_SortI).
bool CExtAPI::list_SortA(ZLIST hList, const char* lpItemName, long To);
Name | Type | Comment |
---|---|---|
hList | ZLIST | A handle to a ZLIST variable containing the item to be sorted. |
lpItemName | const char* | A handle to a C-style string containing the name of the item to be sorted. |
To | long | The desired index of the item. |
False if an error occurred, and true otherwise.
None.