返回 PDF 的 VB.NET 函数?
我正在尝试创建一个返回 PDF 文档的函数。像这样的事情:
Function GetPDF(ByVal DirectoryPath as String) as PDF
Return DirectoryPath
End Function
有什么办法可以做到这一点吗?谢谢!
I'm trying to create a function that would return a PDF document. Something like this:
Function GetPDF(ByVal DirectoryPath as String) as PDF
Return DirectoryPath
End Function
Any way to do this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想用它做什么?操纵它?提供给客户吗?
一般来说,您会返回一个流...
或字节数组...
What are you trying to do with it? Manipulate it? Serve it to a client?
Generally speaking you'd return a Stream...
or an array of Bytes...