DevExpress - Xtra 报告:VB.NET 如何获取当前页码?
我搜索过他们的网站。 我只是想在vb脚本中找到页码。 我有一个报告标题,如果它位于第 1 页,那么我希望在其后有一个分页符。
I've searched their site. I just want to find the page number in the vb script. I have a report header, and if it is on page #1 then I want a page break after.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这段代码应该可以解决问题。 它是报表标题中标签的 PrintOnPage 事件处理程序。
请注意,PageIndex 值是零索引的。 另外,页面索引仅在 PrintOnPageEventArgs 中可用(据我所知),因此这在 Before/AfterPrint 事件中不起作用。
请参阅此知识库文章以供参考。
This code should do the trick. It's the PrintOnPage event handler for a label in your Report Header.
Note that the PageIndex value is zero-indexed. Also, the page index is only available (as far as I know) in the PrintOnPageEventArgs, so this won't work in a Before/AfterPrint event.
See this knowledge base article for reference.