将图像文件加载到剪贴板
我希望使用 VBA 将 Visio 页面的图像放入剪贴板。 我可以使用相关 Page 对象的 .Export 方法导出页面的图像。 但是有没有办法在 VBA 中将图像文件加载到剪贴板?
或者我应该使用 VB6 之类的东西并制作一个小命令行工具,仅使用 Clipboard.SetData LoadPicture( "picpath" ) 将 jpg 或 bmp 文件路径加载到剪贴板中?
I'm looking to get an image of a Visio page into the clipboard using VBA. I can export an image of the page using the .Export method of the Page object in question. But is there a way to load an image file to the clipboard within VBA?
Or should I just use something like VB6 and make a little command line tool that just loads a jpg or bmp file path into the clipboard using Clipboard.SetData LoadPicture( "picpath" )?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用 VBA 复制页面,Visio 不会以多种格式(包括 CF_BITMAP)将其放入剪贴板吗? 如果您随后将其粘贴到不理解 Visio 的应用程序中,我希望它改用位图。
如果您尝试过此操作但不起作用 - 或者如果我误解了这个问题,我深表歉意。
If you
Copy
the Page using VBA, won't Visio put it on the clipboard in multiple formats, including CF_BITMAP? If you then paste it in an application that does not understand Visio, I would expect it to use the bitmap instead.Apologies if you've tried this and it doesn't work - or if I've misunderstood the question.