如何在页面底部打印报表页脚

时间:2013-05-29 22:37:13

标签: report stimulsoft

我希望报告页脚打印在页面底部而不是报告最后一个行项末尾的底部。

另外,我正在格式化这张纸上有预先印好的网格,为了让所有东西都适合网格,我还有一个几英寸高的页脚。但是,我需要报表页脚在页脚区域中打印。

2 个答案:

答案 0 :(得分:1)

Stimulsoft报告中没有报告页脚。 有一个报告摘要,您可以在其中设置 Pring at Bottom 属性。

答案 1 :(得分:0)

您应在页脚区设置 PrintOnAllPages = True

StiFooterBand footerBand = new StiFooterBand();
footerBand.Height = 0.5f;
footerBand.Name = "FooterBand";
footerBand.Border = new StiBorder(StiBorderSides.All, Color.Black, 1, StiPenStyle.Solid);
footerBand.PrintOnAllPages = true;            
page.Components.Add(footerBand);