如何从 MemoryStream 或 Byte 获取页面大小?
我在数据库中有活动报告的图像,当我进入字节并转换为内存流时,它可以传递到活动报告查看器,那么我如何获取活动报告中纸张显示的纸张大小? 我的代码:
Dim repmem As New System.IO.MemoryStream(rptBytes)
repmem.Position = 0
Viewer1.Document.Load(repmem)
I have images of active report in database, when i get into bytes and convert into memory stream so it can pass to active report viewer then how i get paper size of paper display in active report?
My code :
Dim repmem As New System.IO.MemoryStream(rptBytes)
repmem.Position = 0
Viewer1.Document.Load(repmem)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每个文档页面都有自己的大小,可以通过以下方式访问:
document.Pages(0).Size
Every document page has its own size which could be accessed as:
document.Pages(0).Size
请参阅 Page.Width ActiveReports 在线帮助中的属性。
你的代码将类似于:
See the Page.Width property in the ActiveReports Online Help.
Your code will be something like: