Class TitleTemplate
- java.lang.Object
- 
- com.orchestranetworks.addon.dex.configuration.TitleTemplate
 
- 
 public final class TitleTemplate extends java.lang.ObjectSpecifies the configuration used for the title template in the exported file, such as title's starting position and text style.- Since:
- 2.3.0
 
- 
- 
Constructor SummaryConstructors Constructor Description TitleTemplate()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTemplategetDataTemplate()Returns theDataTemplateinstance to represent the title template in the Excel file.java.lang.StringgetTitle()Returns the title which will be exported in the Excel file.booleanisTitleExported()Returnstrueif the title is included in the Excel file export.voidsetDataTemplate(DataTemplate dataTemplate)Sets theDataTemplateinstance to represent the title template in the Excel file.voidsetTitle(java.lang.String title)Sets the title which will be exported in the Excel file.voidsetTitleExported(boolean titleExported)Sets whether the title is exported in the Excel file.
 
- 
- 
- 
Method Detail- 
getDataTemplatepublic DataTemplate getDataTemplate() Returns theDataTemplateinstance to represent the title template in the Excel file. The template can include the starting position and text style.
 - 
setDataTemplatepublic void setDataTemplate(DataTemplate dataTemplate) Sets theDataTemplateinstance to represent the title template in the Excel file. The template can include the starting position and text style.
 - 
isTitleExportedpublic boolean isTitleExported() Returnstrueif the title is included in the Excel file export.
 - 
setTitleExportedpublic void setTitleExported(boolean titleExported) Sets whether the title is exported in the Excel file.
 - 
getTitlepublic java.lang.String getTitle() Returns the title which will be exported in the Excel file.
 - 
setTitlepublic void setTitle(java.lang.String title) Sets the title which will be exported in the Excel file.
 
- 
 
-