Table of Contents

list_SortI

Description

Sort an item in a list to another index. In list_SortI, the item to be sorted is specified by its current location (compare: list_SortA).

Function prototype

bool CExtAPI::list_SortI(ZLIST hList, int From, int To);

Arguments

Name Type Comment
hList ZLIST A handle to a ZLIST variable containg the item to be sorted.
From int The current index of the item to be sorted.
To int The desired index of the item.

Return value

False if an error occurred, and true otherwise.

Comments

None.