<tabular>
XML tagThe <tabular>
tag delimits
a tabular style within a section of the report’s layout. If you use the <tabular>
tag, then you must also nest <field>
tags to list the fields you want to include in the tabular layout.
<tabular>
<field>
</field>
[...]
</tabular>
The following example shows a segment of an XML report definition that defines a section with a tabular layout inside of it:
<section name="header"> "
<tabular name="M_summary" template="corp2.tdf">
<labelAttribute font="Arial"
fontSize="10"
fontStyle="bold"
textColor="white"/>
<field name="F_ports"
source="ports" label="Port IDs"
font="Arial" fontSize="10"/>
<field name="F_locations"
source="locations" label="Port Names"
font="Arial" fontSize="10"/>
</tabular>
</section>
Copyright © 1984, 2005, Oracle. All rights reserved.