Band tag - PO-31/QtReports-OLD GitHub Wiki
Тег Band - блок, отвечающий за общее описание элементов(разделов) отчета.
-
height
- высота блока (default = 0). -
isSplitAllow
- устаревший, заменяетсяsplitType
. Это флаг, указывающий на то разрешено ли блоку разрываться при расширение (значения: true, false). -
splitType
- задает поведение разрыва блока (значения: stretch, prevent, immediate).
<detail>
<band height="400">
<staticText>
<reportElement x="380" y="0" width="200" height="20" />
<text><![CDATA[Тест !!]]></text>
</staticText>
<textField>
<reportElement x="220" y="20" width="100" height="200" />
<textFieldExpression class="QString">
<![CDATA[$P{title}]]>
</textFieldExpression>
</textField>
</band>
</detail>