RepeatContext Function
Description:
Description:
The full repeat context at the point in the template where the function occurs.
Note that brackets are not used for this special function.
Returns:
Text
Examples:
Expression | Result |
|---|---|
[ Repeat 1 {RepeatContext}] | "[1]" |
[ Repeat 2 [Repeat 3 {RepeatContext}]] | One of the following:
"[1][1]" "[1][2]" "[1][3]" "[2][1]" "[2][2]" "[2][3]" |
[ Repeat List("a","b","c") {RepeatCounter}] | One of the following: "[a]" "[b]" "[c]" |