Package net.sf.jasperreports.export
Interface PptxReportConfiguration
-
- All Superinterfaces:
CommonExportConfiguration
,ReportExportConfiguration
- All Known Implementing Classes:
SimplePptxReportConfiguration
public interface PptxReportConfiguration extends ReportExportConfiguration
Interface containing settings used by the PPTX exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRPptxExporter
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_FRAME_AS_TABLE
This property serves as default value for theisFrameAsTable()
export configuration setting.static String
PROPERTY_HIDE_SLIDE_MASTER_PAGES
This property provides a default value for thegetHideSlideMasterPages()
export configuration setting.static String
PROPERTY_IGNORE_HYPERLINK
Property that provides a default value for theisIgnoreHyperlink()
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 String
getHideSlideMasterPages()
This properties specifies the report pages on which the background contents coming from the slide master should be hidden.Boolean
isFrameAsTable()
Indicates whether the contents of the frame produced by a table component is to be exported as table.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_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_HIDE_SLIDE_MASTER_PAGES
static final String PROPERTY_HIDE_SLIDE_MASTER_PAGES
This property provides a default value for thegetHideSlideMasterPages()
export configuration setting.- See Also:
JRPropertiesUtil
, Constant Field Values
-
PROPERTY_FRAME_AS_TABLE
static final String PROPERTY_FRAME_AS_TABLE
This property serves as default value for theisFrameAsTable()
export configuration setting.The property itself defaults to
false
.- See Also:
JRPropertiesUtil
, Constant Field Values
-
-
Method Detail
-
isIgnoreHyperlink
Boolean isIgnoreHyperlink()
- See Also:
PROPERTY_IGNORE_HYPERLINK
-
getHideSlideMasterPages
String getHideSlideMasterPages()
This properties specifies the report pages on which the background contents coming from the slide master should be hidden. The value of the property should be a comma separated list of page numbers or page ranges. Page ranges are made of page numbers separated by a hyphen-minus character. For example: 1, 3-5, 7- See Also:
PROPERTY_HIDE_SLIDE_MASTER_PAGES
-
isFrameAsTable
Boolean isFrameAsTable()
Indicates whether the contents of the frame produced by a table component is to be exported as table.If set to
true
, the content of a table component frame is rendered using DrawingML table markup.- See Also:
PROPERTY_FRAME_AS_TABLE
-
-