<row> (Template Tag)


Description


A row is the horizontal building block of a table. Several rows form the table.

The <row> tag defines specific rows of the table.


Example


 <?xml version="1.0" encoding="utf-8"?>

 <assembly id="nxm.tests.basic.pl">

. . .

 <document>

   <section width="21.0" height="29.7">

     <table style="small;debug">

       <columns>

         <column width="1.0"></column>

         <column width="6.0"></column>

       </columns>

       <row style="small">

         <cell>

           <text>LP</text>

         </cell>

         <cell>

           <text>First name</text>

         </cell>

       </row>

     </table>

   </section>

 </document>

. . .

 </assembly>


Attributes



Attribute

Description

style

A name of an element’s style. If you want to apply multiple styles in an element, enter the styles’ names separated by semicolon.



Child elements permitted



Child element

Description

cell

Defines a cell in a row in a table (the equivalent of <td> or <th> tag in HTML).

The cell tag can contain multiple elements such as: <text>, <br/>, <image> and <paragraph> or another table.



Parent elements permitted


The <table> element only is permitted.