12345678910111213141516171819202122 |
- namespace FastReport.Engine
- {
- partial class ReportEngine
- {
- private void InitializePages()
- {
- for (int i = 0; i < Report.Pages.Count; i++)
- {
- ReportPage page = Report.Pages[i] as ReportPage;
- if (page != null)
- PreparedPages.AddSourcePage(page);
- }
- }
- partial void TranslateObjects(BandBase parentBand);
- internal void TranslatedObjectsToBand(BandBase band)
- {
- // Avoid compilation errors
- }
- }
- }
|