<footer> (Template Tag)


Description


The tag defines the footer of a section or a table. There can be only one footer tag per container.


Example


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

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


Example for section

. . .

<document>

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

    <footer>

      <text input="document_code"></text>

    </footer>

  </section>

</document>


Example for table

...

<table>

  <columns>

    <column width=”5.0”>

    <column width=”6.0”>

  </columns>

  <row>

    <cell>

      <text>Cell text No1</text>

    </cell>
    <cell>

      <text>Cell text No2</text>

    </cell>
  </row>

<footer>

  <row>

    <cell>

      <text>Cell text No1</text>

    </cell>
    <cell>

      <text>Cell text No2</text>

    </cell>
  </row>

...

 </footer>

</table>

...

 </assembly>


For section:

The footer contains only one text tag displaying the contents of the document_code field.




For table:

Represents the footer of the table.

It can have several rows.

The number of columns (cell) must match the number declared in the <columns> tag.

If you want to have a whole row available then you can use column merging via the colspan attribute in cell, for example:




. . .

<footer>

  <row>

    <cell colspan=”2”>

      <paragraph>

       <text>Text na cały wiersz tabeli<text>

     </ paragraph >

    </cell>

  </row>

</footer>

. . .


Attributes


style,


Child elements permitted


All child elements are permitted.


Parent elements permitted


<section>, <table>,