mirror of
https://github.com/fralx/LimeReport.git
synced 2025-09-23 16:39:07 +03:00
startFromNewPage property has been added to Data band
This commit is contained in:
@@ -142,7 +142,8 @@ BandDesignIntf::BandDesignIntf(BandsType bandType, const QString &xmlTypeName, Q
|
||||
m_columnIndex(0),
|
||||
m_columnsFillDirection(Horizontal),
|
||||
m_reprintOnEachPage(false),
|
||||
m_startNewPage(false)
|
||||
m_startNewPage(false),
|
||||
m_startFromNewPage(false)
|
||||
{
|
||||
setPosibleResizeDirectionFlags(ResizeBottom);
|
||||
setPosibleMoveFlags(TopBotom);
|
||||
@@ -698,6 +699,16 @@ void BandDesignIntf::childBandDeleted(QObject *band)
|
||||
m_childBands.removeAt(m_childBands.indexOf(reinterpret_cast<BandDesignIntf*>(band)));
|
||||
}
|
||||
|
||||
bool BandDesignIntf::startFromNewPage() const
|
||||
{
|
||||
return m_startFromNewPage;
|
||||
}
|
||||
|
||||
void BandDesignIntf::setStartFromNewPage(bool startWithNewPage)
|
||||
{
|
||||
m_startFromNewPage = startWithNewPage;
|
||||
}
|
||||
|
||||
bool BandDesignIntf::startNewPage() const
|
||||
{
|
||||
return m_startNewPage;
|
||||
|
Reference in New Issue
Block a user