Problem with Visio ExportAsFixedFormat

A

Adrian

Hi,

I'm trying to use ExportAsFixedFormat with a Visio Document.
ExportAsFixedFormat works well using other Office Programs (Word, Excel,
PowerPoint) but with Visio I'm getting an error "Invalid Parameter".

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?

Regards,
Adrian
 
Top