Теги - PO-21/QtReports GitHub Wiki
- Report
- Style
- Title
- StaticText
- Detail
- Band
- ReportElement
- CDATA
- Parameter
- queryString
- variable
- field
- group
- image
- Text Field Expression
- Graphic Elements
- textField
- Общая структура
<report>
<style name="Style1" … />
<style name="Style2" … />
<title>
<band>
<staticText>
<reportElement />
<textElement />
<text></text>
</staticText>
</band>
</title>
<detail>
<band>
<staticText>
<reportElement />
<textElement />
<text></text>
</staticText>
</band>
<band>
<staticText>
<reportElement />
<textElement />
<text></text>
</staticText>
</band>
</detail>
</report>
- Вложенность тегов
<report>
<style />
<title>
<band>
<staticText>
<reportElement />
<textElement />
<text></text>
</staticText>
<band>
</title>
<detail>
<band>
<staticText>
<reportElement />
<textElement />
<text></text>
</staticText>
<band>
</detail>
</report>