ValueList.Move
Syntax:
Parameters:
<Item> (required)
Index of the list item being moved or the item itself.
<Offset> (required)
Number of positions by which the item should be shifted. A positive value corresponds to the item being moved to the end of the list (index increment), while a negative value corresponds to the item being moved to the beginning of the list.
Description:
Availability:
Example:
// Move the first item "down" List.Move(0,1); |