0

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

此外,我正在为一张上面有预印网格的纸张进行格式化,为了使所有内容都适合网格,我还有一个几英寸高的页脚。但是,我需要在页脚区域打印报表页脚。

4

2 回答 2

1

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

于 2013-05-30T06:09:04.467 回答
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);
于 2015-03-12T10:11:50.857 回答