Class SpreadsheetExportTemplate
- java.lang.Object
-
- com.orchestranetworks.addon.dex.configuration.SpreadsheetExportTemplate
-
- All Implemented Interfaces:
SpreadsheetTemplate
public final class SpreadsheetExportTemplate extends java.lang.Object implements SpreadsheetTemplate
Specifies a spreadsheet template configuration for exporting data to an Excel file.- Since:
- 2.3.0
-
-
Constructor Summary
Constructors Constructor Description SpreadsheetExportTemplate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTemplategetColumnTitleTemplate()Returns theDataTemplateinstance to represent the column title template.DataTemplategetDataTemplate()Returns theDataTemplateinstance to represent the data template.SubtitleTemplategetSubtitleTemplate()Returns theSubtitleTemplateinstance to represent the subtitle template.TitleTemplategetTitleTemplate()Returns theTitleTemplateinstance to represent the title template.booleanisTableBorderUsed()Returnstrueif a border is used for exported data.voidsetColumnTitleTemplate(DataTemplate columnTitleTemplate)Sets theDataTemplateinstance to represent the column title template.voidsetDataTemplate(DataTemplate dataTemplate)Sets theDataTemplateinstance to represent the data template.voidsetSubtitleTemplate(SubtitleTemplate subtitleTemplate)Sets theSubtitleTemplateinstance to represent the subtitle template.voidsetTableBorderUsed(boolean tableBorderUsed)Sets whether a border is used for exported data.voidsetTitleTemplate(TitleTemplate titleTemplate)Sets theTitleTemplateinstance to represent the title template.
-
-
-
Method Detail
-
getTitleTemplate
public TitleTemplate getTitleTemplate()
Returns theTitleTemplateinstance to represent the title template. This can include a title's starting position and text style in the exported file.
-
setTitleTemplate
public void setTitleTemplate(TitleTemplate titleTemplate)
Sets theTitleTemplateinstance to represent the title template. This can include a title's starting position and text style in the exported file.
-
getSubtitleTemplate
public SubtitleTemplate getSubtitleTemplate()
Returns theSubtitleTemplateinstance to represent the subtitle template. This can include a subtitle's starting position and text style in the exported file.
-
setSubtitleTemplate
public void setSubtitleTemplate(SubtitleTemplate subtitleTemplate)
Sets theSubtitleTemplateinstance to represent the subtitle template. This can include a subtitle's starting position and text style in the exported file.
-
getColumnTitleTemplate
public DataTemplate getColumnTitleTemplate()
Returns theDataTemplateinstance to represent the column title template. This can include the header's starting position and text style in the exported file.
-
setColumnTitleTemplate
public void setColumnTitleTemplate(DataTemplate columnTitleTemplate)
Sets theDataTemplateinstance to represent the column title template. This can include the header's starting position and text style in the exported file.
-
getDataTemplate
public DataTemplate getDataTemplate()
Returns theDataTemplateinstance to represent the data template. This can include the data starting position and text style in the exported file.- Specified by:
getDataTemplatein interfaceSpreadsheetTemplate
-
setDataTemplate
public void setDataTemplate(DataTemplate dataTemplate)
Sets theDataTemplateinstance to represent the data template. This can include the data starting position and text style in the exported file.
-
isTableBorderUsed
public boolean isTableBorderUsed()
Returnstrueif a border is used for exported data.
-
setTableBorderUsed
public void setTableBorderUsed(boolean tableBorderUsed)
Sets whether a border is used for exported data.
-
-