0
0
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:
Arin Alexander
2016-05-31 15:07:57 +03:00
parent 54278cdb37
commit d1f33e095b
4 changed files with 19 additions and 2 deletions

View File

@@ -206,6 +206,9 @@ public:
void setAutoHeight(bool value){m_autoHeight=value;}
bool autoHeight(){return m_autoHeight;}
bool startFromNewPage() const;
void setStartFromNewPage(bool startFromNewPage);
signals:
void bandRendered(BandDesignIntf* band);
protected:
@@ -256,6 +259,7 @@ private:
BandColumnsLayoutType m_columnsFillDirection;
bool m_reprintOnEachPage;
bool m_startNewPage;
bool m_startFromNewPage;
};
class DataBandDesignIntf : public BandDesignIntf{