Package net.sf.jasperreports.export
Interface XlsxExporterConfiguration
-
- All Superinterfaces:
CommonExportConfiguration
,ExporterConfiguration
,XlsExporterConfiguration
- All Known Subinterfaces:
XlsxMetadataExporterConfiguration
- All Known Implementing Classes:
SimpleXlsxExporterConfiguration
,SimpleXlsxMetadataExporterConfiguration
public interface XlsxExporterConfiguration extends XlsExporterConfiguration
Interface containing settings used by the XLSX exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRXlsxExporter
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_MACRO_TEMPLATE
Property used to provide a default value for thegetMacroTemplate()
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.XlsExporterConfiguration
PROPERTY_CREATE_CUSTOM_PALETTE, PROPERTY_ENCRYPTION_PASSWORD, PROPERTY_METADATA_APPLICATION, PROPERTY_METADATA_AUTHOR, PROPERTY_METADATA_KEYWORDS, PROPERTY_METADATA_SUBJECT, PROPERTY_METADATA_TITLE, PROPERTY_WORKBOOK_TEMPLATE, PROPERTY_WORKBOOK_TEMPLATE_KEEP_SHEETS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMacroTemplate()
Specifies the location of an existing workbook template containing a macro object.-
Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
Methods inherited from interface net.sf.jasperreports.export.XlsExporterConfiguration
getEncryptionPassword, getMetadataApplication, getMetadataAuthor, getMetadataKeywords, getMetadataSubject, getMetadataTitle, getWorkbookTemplate, isCreateCustomPalette, isKeepWorkbookTemplateSheets
-
-
-
-
Field Detail
-
PROPERTY_MACRO_TEMPLATE
static final String PROPERTY_MACRO_TEMPLATE
Property used to provide a default value for thegetMacroTemplate()
export configuration setting.- Since:
- 4.5.1
- See Also:
JRPropertiesUtil
, Constant Field Values
-
-
Method Detail
-
getMacroTemplate
String getMacroTemplate()
Specifies the location of an existing workbook template containing a macro object. The macro object will be copied into the generated document if the template location is valid. Macros can be loaded from Excel macro-enabled template files (*.xltm) as well as from valid Excel macro-enabled documents (*.xlsm).- See Also:
PROPERTY_MACRO_TEMPLATE
-
-