在不同的页面中打印每一行
我有一个包含数据行的数据表,它来自 Ultra 网格。我想打印报告的不同页面中的每一行。我该如何实现这一目标。我正在使用 C# 和活动报告。
I have a data table with data rows, which is coming from Ultra grid. I want to print each row in different pages of the report. How do I achieve this. I am using C# and active report.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在 ActiveReports 中打印新页面上的每一行,请查看报表的
detail
部分的属性。NewPage
属性应设置为After
。现在,报告中的每一行都将打印在自己的页面上。To print each row on a new page in ActiveReports, look at the properties of the
detail
section of your report. TheNewPage
property should be set toAfter
. Each row in your report will now print on its own page.