当 NewPage 设置为“之后”时,ActiveReports 始终打印最后一页。
我有一个 ActiveReports 文件,其报表详细信息部分中的 NewPage 属性设置为“之后”。每次打印时,报告末尾都会多出一页。我怎样才能防止这种情况发生?
唯一的额外页面是最后一页。所以我很确定这不是页边距的问题。
I have an ActiveReports file with the NewPage property set to "After" in the Detail Section of my report. Every time I print, I get an extra page at the end of the report. How can I prevent this from happening?
The only extra page is the last page. So I'm pretty sure this is not an issue about page margins.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过在所有后续部分(包括报表页脚)上设置 heights = 0 来解决这个问题。
I solved this by making heights = 0 on all subsequent sections, including the Report Footer.
如果您不想将后续部分的高度显式设置为零,则可以将部分的“CanShrink”属性设置为“True”。这将自动将各部分缩小到其中任何内容的底部边缘。
If you do not want to explicitly set the heights of the subsequent sections to zero, you can just set the sections' "CanShrink" properties to "True". That will automatically shrink the sections to the bottom edge of any content inside them.