com.aspose.words.jasperreports
Class AWDocExporter

java.lang.Object
  extended by AWAbstractExporter
      extended by com.aspose.words.jasperreports.AWDocExporter

public class AWDocExporter
extends AWAbstractExporter

Exports a JasperReports report to the DOC format. Use this class to export a report to the DOC format programmatically.

The following code sample demonstrates the usage of the class:

 AWDocExporter exporter = new AWDocExporter();
 exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
 exporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, destFile.toString());
 exporter.exportReport();
 


Constructor Summary
AWDocExporter()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AWDocExporter

public AWDocExporter()