2

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.

4

1 回答 1

1

您没有指定您使用的版本,但是 MSDN 是查找所有 MS API 参考的地方。

Publisher 2007 开发人员参考
Publisher 2010 开发人员参考

于 2011-04-13T11:49:12.320 回答