repeat (DOCX)
A Word content command that iterates through all items of a Collection and produces a copy of its host content control, documents contents included, for every item in the Collection. Any other Word content commands of lower priority that are in the host content control, as well as content commands within the copied document contents, are also copied and evaluated on each round of the iteration, with one of the items of the Collection as a variable in the context for these commands to make use of.
This command produces a local variable context for the Word content commands evaluated within the iteration rounds. This local context's primary feature is that it contains one of the Collection's items for the other content commands to access. A new context is created at the start of every round of the iteration process and then terminated at the end of the round.
This attribute has a priority of 100.
Syntax:
repeat(value,var,varStatus,roundTest)
With required attributes only:
repeat(value,var)
Attributes
#1 - value | ||
---|---|---|
Required | Value type | EL-evaluated |
Yes | Collection, Map, Data Item | Yes |
This attribute defines the container whose contents the command will iterate through. While this container is primarily expected to be a Collection, two other types of values are also accepted. The three types are handled in the following ways:
|
#2 - var | ||
---|---|---|
Required | Value type | EL-evaluated |
Yes | String | No |
The value of this attribute defines the name of the local context variable that holds the current item of the loop. |
#3 - varStatus | ||
---|---|---|
Required | Value type | EL-evaluated |
No | String | No |
Defines the name of the variable that holds a Loop Status value. Loop Status has the properties Property |
#4 - roundTest | ||
---|---|---|
Required | Value type | EL-evaluated |
No | Boolean | Yes |
This attribute can be used to define a condition for skipping certain iteration rounds. This attribute's expression is evaluated at the start of every round and if it doesn't resolve into If undefined, no iteration rounds are skipped. |
Examples
Use repeat
for presenting a Collection's contents on the document. However, do note that the table command is generally more suitable for presenting Collection contents on a table - repeat
works for multiplying tables as a whole, though.
As repeat
copies its host content control as well, a lower priority command like out can be used in the same content control title to output the looped content. The following example could be used on a content control around a paragraph to output names of Opportunity records in a Collection found in the "opportunities" variable.
repeat(opportunities,opp) out(opp.Name)
The fourth attribute roundTest
attribute exists as the if command has higher priority than repeat
and therefore cannot be used in the same title to make items individually conditional. It is, however, possible to use it
in another content control that is inside repeat
's host content control. Note that in roundTest
it is possible to use the Loop Status value created through the third attribute varStatus
or the current item of the iteration. Of the following examples the first would only loop through non-closed Opportunities and the second only through the first 20.
repeat(opportunities,opp,,!opp.IsClosed)
repeat(opportunities,opp,status,status.index < 20)