Package net.sf.jasperreports.export
Interface OdtReportConfiguration
-
- All Superinterfaces:
CommonExportConfiguration
,ReportExportConfiguration
- All Known Implementing Classes:
SimpleOdtReportConfiguration
public interface OdtReportConfiguration extends ReportExportConfiguration
Interface containing settings used by the ODT exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JROdtExporter
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_IGNORE_HYPERLINK
Property that provides a default for theisIgnoreHyperlink()
export configuration flag.static String
PROPERTY_ODT_FLEXIBLE_ROW_HEIGHT
This property serves as default value for theisFlexibleRowHeight()
export configuration flag.-
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
isFlexibleRowHeight()
Indicates whether table rows in ODT documents can grow if more text is added into cells.Boolean
isIgnoreHyperlink()
-
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_ODT_FLEXIBLE_ROW_HEIGHT
static final String PROPERTY_ODT_FLEXIBLE_ROW_HEIGHT
This property serves as default value for theisFlexibleRowHeight()
export configuration flag.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 for theisIgnoreHyperlink()
export configuration flag.- See Also:
- Constant Field Values
-
-
Method Detail
-
isFlexibleRowHeight
Boolean isFlexibleRowHeight()
Indicates whether table rows in ODT documents can grow if more text is added into cells.Is set to
false
, the table rows do not increase in height automatically and the user has to enlarge them manually.- See Also:
PROPERTY_ODT_FLEXIBLE_ROW_HEIGHT
-
isIgnoreHyperlink
Boolean isIgnoreHyperlink()
- See Also:
PROPERTY_IGNORE_HYPERLINK
-
-