ForAll
Executes the given commands for all elements in the data XML file that match the contents of the attribute select.
Child elements: Action, Attribute, Barcode, Column, Columns, Copy-of, DefineColor, DefineFontfamily, Element, EmptyLine, Fontface, ForAll, Group, HSpace, Hyphenation, Image, InsertPages, Li, LoadDataset, LoadFontfile, Loop, Message, NewPage, NextFrame, NextRow, Output, Paragraph, PlaceObject, ProcessNode, SaveDataset, SavePages, SetVariable, SortSequence, Sub, Sup, Switch, Tablehead, Tablerule, Td, Tr, Until, Value, While
Parent elements: AtPageCreation, AtPageShipout, Case, Contents, Element, ForAll, Loop, Otherwise, Record, SavePages, SetVariable, Table, Td, Text, Textblock, Tr, Until, While
Limits the number of children to the given number.
Selects the child elements from the data XML
<Record element="data"> <PlaceObject> <Table> <ForAll select="entry"> <Tr><Td><Paragraph><Value select="string(.)"/></Paragraph></Td></Tr> </ForAll> </Table> </PlaceObject> </Record>
Creates a table row for all elements entry in the data element data. The data XML should look similar to this:
<data> <entry>a</entry> <entry>b</entry> <entry>c</entry> </data>