Search

Arrays

ArrayClear

The ArrayClear function completely empties an array. This is the “reset button.” Use this if you want to reuse an array name later in a template but want to make sure no data from the previous use is still hanging around.   Example: «ArrayClear(MyList)»   XpressDox Arrays are similar to...

ArrayConcat

ArrayConcat joins two arrays together. Think of this as “merging” two lists. If you have «ArrayA(Red,Blue)» and «ArrayB(Green,Blue)», «ArrayConcat(ArrayA,ArrayB)» results in «ArrayA» which contains all four items.   Example:«ArrayConcat(TargetArray,SourceArray)»   For more information on XpressDox Arrays please refer to this post describing Arrays.

ArrayDelete

XpressDox Arrays ArrayDelete removes a specific item from an array. Tell XpressDox which array to look at and which “key” (position) to delete. It’s like crossing one specific line off a notebook page.   Example: «ArrayDelete(MyList,2)»   For more information on XpressDox Arrays please refer to this post describing Arrays.

ArrayCount - XpressDox

XpressDox Arrays ArrayCount returns the number of elements in an Array. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArrayGetV - XpressDox

XpressDox Arrays are similar to variables, and for more information on ArrayGetV please refer to the post describing Arrays.

ArrayGetVn - XpressDox

XpressDox Arrays ArrayGetVn gets the value of an array element as a numeric value. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArrayIncrementV - XpressDox

XpressDox Arrays are similar to variables, and for more information on ArrayIncrementV please refer to the post describing Arrays.

ArrayIncrementVr - XpressDox

XpressDox Arrays are similar to variables, and for more information on ArrayIncrementVr please refer to the post describing Arrays.

ArrayKeys - XpressDox

XpressDox Arrays are similar to variables, and for more information on ArrayKeys please refer to the post describing Arrays.

ArrayRemoveDuplicates - XpressDox

XpressDox Arrays ArrayRemoveDuplicates removes duplicates and empty values from an Array. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArraySetFromString - XpressDox

XpressDox Arrays ArraySetFromString sets a new Array from a delimited string. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArraySetV - XpressDox

XpressDox Arrays ArraySetV sets a new Array, or changes the value of an Array element. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArraySetVr - XpressDox

XpressDox Arrays ArraySetVr sets a new Array, or changes the value of an Array element, and removes the paragraph on which the command exists. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArraySortByIndex - XpressDox

XpressDox Arrays ArraySortByIndex sorts the elements of the Array by the index values. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArraySortByValue - XpressDox

XpressDox Arrays ArraySortByValues sorts the elements of an Array by value. For more information on XpressDox Arrays please refer to this post describing Arrays.

ArrayValues - XpressDox

XpressDox Arrays are similar to variables, and for more information on ArrayValues please refer to the post describing Arrays.
Loading...