Solved
How to export a part or assembly to 3d pdf using vb API in creo 10
Hi,
I'm using Creo 10 and i'm trying to export the model to 3d PDF using VB COM API in C#.
i tried below 2 options and getting exceptions.
var instructions = new CCpfcPDFExportInstructions().Create();
model.Export(pdfFilePath,(IpfcExportInstructions) instructions);
model.ExportIntf3D(pdfFilePath, (int)EpfcExportType.EpfcEXPORT_PDF,null);
can you please provide some code sample to guide me through?

