Package net.sf.jasperreports.export
Interface DocxReportConfiguration
-
- All Superinterfaces:
CommonExportConfiguration,ReportExportConfiguration
- All Known Implementing Classes:
SimpleDocxReportConfiguration
public interface DocxReportConfiguration extends ReportExportConfiguration
Interface containing settings used by the DOCX exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRDocxExporter
-
-
Field Summary
Fields Modifier and Type Field Description static StringPROPERTY_FLEXIBLE_ROW_HEIGHTThis property serves as default value for theisFlexibleRowHeight()export configuration setting.static StringPROPERTY_FRAMES_AS_NESTED_TABLESThis property serves as default value for theisFramesAsNestedTables()export configuration setting.static StringPROPERTY_IGNORE_HYPERLINKProperty that provides a default value for theisIgnoreHyperlink()export configuration flag.static StringPROPERTY_NEW_LINE_AS_PARAGRAPHThis property serves as default value for theisNewLineAsParagraph()export configuration setting.-
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS
-
Fields inherited from interface net.sf.jasperreports.export.ReportExportConfiguration
PROPERTY_IGNORE_PAGE_MARGINS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanisFlexibleRowHeight()Indicates whether table rows can grow if more text is added into cells.BooleanisFramesAsNestedTables()Indicates whetherframesare to be exported as nested tables.BooleanisIgnoreHyperlink()BooleanisNewLineAsParagraph()Indicates whether the newline element present in a justified paragraph introduces a new justified paragraph.-
Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
Methods inherited from interface net.sf.jasperreports.export.ReportExportConfiguration
getEndPageIndex, getExporterFilter, getHyperlinkProducerFactory, getOffsetX, getOffsetY, getPageIndex, getProgressMonitor, getStartPageIndex
-
-
-
-
Field Detail
-
PROPERTY_FRAMES_AS_NESTED_TABLES
static final String PROPERTY_FRAMES_AS_NESTED_TABLES
This property serves as default value for theisFramesAsNestedTables()export configuration setting.The property itself defaults to
true.- See Also:
JRPropertiesUtil, Constant Field Values
-
PROPERTY_FLEXIBLE_ROW_HEIGHT
static final String PROPERTY_FLEXIBLE_ROW_HEIGHT
This property serves as default value for theisFlexibleRowHeight()export configuration setting.The property itself defaults to
false.- See Also:
JRPropertiesUtil, Constant Field Values
-
PROPERTY_NEW_LINE_AS_PARAGRAPH
static final String PROPERTY_NEW_LINE_AS_PARAGRAPH
This property serves as default value for theisNewLineAsParagraph()export configuration setting.The property itself defaults to
false.- See Also:
JRPropertiesUtil, Constant Field Values
-
PROPERTY_IGNORE_HYPERLINK
static final String PROPERTY_IGNORE_HYPERLINK
Property that provides a default value for theisIgnoreHyperlink()export configuration flag.- See Also:
- Constant Field Values
-
-
Method Detail
-
isFramesAsNestedTables
Boolean isFramesAsNestedTables()
Indicates whetherframesare to be exported as nested tables.If set to
false, the frame contents will be integrated into the master/page table.- See Also:
PROPERTY_FRAMES_AS_NESTED_TABLES
-
isFlexibleRowHeight
Boolean isFlexibleRowHeight()
Indicates whether table rows can grow if more text is added into cells.If set to
false, the table rows do not increase in height automatically and the user has to enlarge them manually.- See Also:
PROPERTY_FLEXIBLE_ROW_HEIGHT
-
isNewLineAsParagraph
Boolean isNewLineAsParagraph()
Indicates whether the newline element present in a justified paragraph introduces a new justified paragraph.If set to
true, the text line before the new paragraph will lose the justified alignment.- See Also:
PROPERTY_NEW_LINE_AS_PARAGRAPH
-
isIgnoreHyperlink
Boolean isIgnoreHyperlink()
- See Also:
PROPERTY_IGNORE_HYPERLINK
-
-