Tags - PO-31/QtReports-OLD GitHub Wiki
- Band
- CDATA
- Detail
- field
- Graphic Elements
- group
- image
- Parameter
- queryString
- Report
- ReportElement
- StaticText
- Style
- text
- Text Field Expression
- textElement
- textField
- Title
- variable
- Общая структура
<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>