Force Line Breaks

Contents
[ ]

In JasperReports:

import com.aspose.words.jasperreports.*;
AWDocExporter exporter = new AWDocExporter();
exporter.setParameter(AWExporterParameter.FORCE_LINE_BREAKS, true);
exporter.setParameter(AWExporterParameter.LINE_BREAK_CHARS, ".,");
exporter.exportReport();

In JasperServer:

<bean id="aw_exportParameters" class="com.aspose.words.jasperreports.AWExportParametersBean">
    <property name="forceLineBreaks" value="true"/>
    <property name="lineBreakChars" value=".,"/>
</bean>