Example #1
0
        private void EndLastPage()
        {
            // end column event
            OnStateChanged(page, EngineState.ColumnFinished);

            if (page.ReportSummary != null)
            {
                // do not show column footer here! It's a special case and is handled in the ShowBand.
                ShowBand(page.ReportSummary);
            }
            else
            {
                ShowBand(page.ColumnFooter);
            }

            ShowPageFooter(false);
            OutlineRoot();
            page.FinalizeComponents();
        }