mirror of
https://github.com/fralx/LimeReport.git
synced 2025-09-23 16:39:07 +03:00
repeatOnEachRow property has been added to DataHeader
This commit is contained in:
@@ -144,7 +144,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
|
||||
m_reprintOnEachPage(false),
|
||||
m_startNewPage(false),
|
||||
m_startFromNewPage(false),
|
||||
m_printAlways(false)
|
||||
m_printAlways(false),
|
||||
m_repeatOnEachRow(false)
|
||||
{
|
||||
setPosibleResizeDirectionFlags(ResizeBottom);
|
||||
setPosibleMoveFlags(TopBotom);
|
||||
@@ -718,6 +719,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
|
||||
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
|
||||
}
|
||||
|
||||
bool BandDesignIntf::repeatOnEachRow() const
|
||||
{
|
||||
return m_repeatOnEachRow;
|
||||
}
|
||||
|
||||
void BandDesignIntf::setRepeatOnEachRow(bool repeatOnEachRow)
|
||||
{
|
||||
m_repeatOnEachRow = repeatOnEachRow;
|
||||
}
|
||||
|
||||
bool BandDesignIntf::printAlways() const
|
||||
{
|
||||
return m_printAlways;
|
||||
|
Reference in New Issue
Block a user