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.