cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X

To export a drw to PDF using J-link

sindl.ecoml.sa
1-Newbie

To export a drw to PDF using J-link

Hello!

 

Has someone already exported a drw to PDF using J-link?

 

Thank you!

7 REPLIES 7

Hi,

PDFExportInstructions exportInstructions = pfcExport.PDFExportInstructions_Create();

curDrawing.Export("fileName", exportInstructions);

Best Regards,

Thanks for the help Tommy Bijnens!

The pdf is opening right after it is generated, do you know if there is any way for it not to open?

In my application, it is not necessary to open the pdf to view.

Thanks!

Hello,

We use this for our PDF export.

PDFOption MyPdfOption = pfcExport.PDFOption_Create();

MyPdfOption.SetOptionType(PDFOptionType.PDFOPT_LAUNCH_VIEWER);

MyPdfOption.SetOptionValue(pfcArgument.CreateBoolArgValue(false));

Myoptions.append(MyPdfOption);

Hope it helps.

Regards.

We use a .DOP file for configuration of the export.

But if you only need to set this one option, Paul's sollution might be more practical.

Paul,

Only one question. The "myoptions" attribute is StringBuffer?

At first, this solution did not work as expected.

Thank you!

PDFOptions Myoptions = PDFOptions.create();

Thank you!

It worked as I expected.

Top Tags