出版商自动化硕士
我需要通过 Silverlight OOB 应用程序自动化 MS Publisher 以生成发布者文档。我从在这个论坛上找到的一个示例开始,通过 Silverlight 完成了一些 Excel 自动化。以下作品
dynamic mspub = AutomationFactory.CreateObject("Publisher.Application");
dynamic pubd = mspub.Documents.Add();
但是,我真的不知道如何才能更进一步。我需要定义样式、添加图像、添加表格、添加文本......。我将非常感谢任何帮助。我最缺少的是对 MS Publisher 自动化对象所公开的各种功能的适当参考。
我将非常感谢任何帮助。
I need to automate MS Publisher via a Silverlight OOB application to generate a publisher document. I have done some Excel automation via Silverlight starting from an example I found on this forum. The following works
dynamic mspub = AutomationFactory.CreateObject("Publisher.Application");
dynamic pubd = mspub.Documents.Add();
However, I don't really know how I can take things further. I need to define styles, add images, add tables, add text... . I would much appreciate any help. What I lack above all is a decent reference to the various capabilities exposed by the MS Publisher automation object.
I would hugely appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无需指定您使用的版本,但可以在 MSDN 上查找所有 MS API 的参考。
Publisher 2007 开发人员参考
Publisher 2010 开发人员参考
You don't specify which version you are using however MSDN is the place to find reference on for all MS API's.
Publisher 2007 Developer Reference
Publisher 2010 Developer Reference