ListDeleteat()

Removes item from the list at the given position, returning back the new list

Usage

STRING = ListDeleteat( list, position, delimiter )
Argument Summary
list list
position position
delimiter delimiter - default comma (,) [optional]

Calling

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

ListDeleteat(
   list=?, 
   position=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListDeleteat( ArgumentCollection={
   list : ?, 
   position : ?, 
   delimiter : ?
} );