Example pluginVP-UML

hI, i need an example in order to generate a customized report in VP, Is there anybody to help please! :stuck_out_tongue:
I need a different example from the Vp doc-plugin.
thanks

Dear karinadegesys,

You may try calling the following methods for report generation:

HTML report:
ApplicationManager.instance().getReportManager().generateHTMLReport(outputDir);

PDF report:
ApplicationManager.instance().getReportManager().generatePDFReport(outputFile);

Word report: ApplicationManager.instance().getReportManager().generateWordReport(outputFile);

If you want to show the dialog box for report generation, you can call:
“showGenerateXXXXReportDialog()” on report manager where XXXX is a kind of report such as HTML.

Best regards,
Jick