Index
Main Menu
Beginner Course
Learning the Basics
Knowledge Base
Visit our User Forum for discussions & solutions
Arrays
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.
Loading...