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 String
PROPERTY_BACKGROUND_AS_HEADER
Property that provides a default value for theisBackgroundAsHeader()
export configuration flag.static String
PROPERTY_FLEXIBLE_ROW_HEIGHT
This property serves as default value for theisFlexibleRowHeight()
export configuration setting.static String
PROPERTY_FRAMES_AS_NESTED_TABLES
This property serves as default value for theisFramesAsNestedTables()
export configuration setting.static String
PROPERTY_IGNORE_HYPERLINK
Property that provides a default value for theisIgnoreHyperlink()
export configuration flag.static String
PROPERTY_NEW_LINE_AS_PARAGRAPH
This 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 Boolean
isBackgroundAsHeader()
Boolean
isFlexibleRowHeight()
Indicates whether table rows can grow if more text is added into cells.Boolean
isFramesAsNestedTables()
Indicates whetherframes
are to be exported as nested tables.Boolean
isIgnoreHyperlink()
Boolean
isNewLineAsParagraph()
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
-
PROPERTY_BACKGROUND_AS_HEADER
static final String PROPERTY_BACKGROUND_AS_HEADER
Property that provides a default value for theisBackgroundAsHeader()
export configuration flag.- See Also:
- Constant Field Values
-
-
Method Detail
-
isFramesAsNestedTables
Boolean isFramesAsNestedTables()
Indicates whetherframes
are 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
-
isBackgroundAsHeader
Boolean isBackgroundAsHeader()
- See Also:
PROPERTY_BACKGROUND_AS_HEADER
-
-