Problem with Visio ExportAsFixedFormat

A

AgnesLSJ

Hi,

I'm trying to use ExportAsFixedFormat with a Visio Document. I'm using
Office 2007 and Visual studio 2008.

Here is my code:
ApplicationClass visioApplication = new ApplicationClass();
Document visioDocument = visioApplication.Documents.Open(@"C:\temp.vsd");
visioDocument.ExportAsFixedFormat(VisFixedFormatTypes.visFixedFormatPDF,
@"c:\visio.pdf", VisDocExIntent.visDocExIntentPrint,
VisPrintOutRange.visPrintAll, 0, 0, false, true, true, true, false, null);

I've been trying different values for the bools and enums, but with no
success. All I get is a COMException telling me "Invalid parameter".

Any suggestions?
Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top