Package io.revealbi.core
Interface IDocumentExportOptions
- All Superinterfaces:
IInitScriptProviderExportOptions
- All Known Implementing Classes:
DocumentExportOptions,PdfExportOptions,PowerPointExportOptions
Defines document-specific export options.
-
Method Summary
Modifier and TypeMethodDescriptionDocument author.intgetColor()Color used for titles underlinesCompany name displayed in the lower left cornerbooleanIndicates page orientation when exportingbyte[]getLogo()Company logo displayed in the lower left corner.voidDocument author.voidsetColor(int color) Color used for titles underlinesvoidsetCompany(String company) Company name displayed in the lower left cornervoidsetIsLandscape(boolean isLandscape) Indicates page orientation when exportingvoidsetLogo(byte[] logo) Company logo displayed in the lower left corner.Methods inherited from interface io.revealbi.core.IInitScriptProviderExportOptions
getInitScript, setInitScript
-
Method Details
-
getAuthor
String getAuthor()Document author. It will be displayed in the upper left corner- Returns:
- Document author. It will be displayed in the upper left corner
-
setAuthor
Document author. It will be displayed in the upper left corner- Parameters:
author- Document author. It will be displayed in the upper left corner
-
getCompany
String getCompany()Company name displayed in the lower left corner- Returns:
- Company name displayed in the lower left corner
-
setCompany
Company name displayed in the lower left corner- Parameters:
company- Company name displayed in the lower left corner
-
getIsLandscape
boolean getIsLandscape()Indicates page orientation when exporting- Returns:
- Indicates page orientation when exporting
-
setIsLandscape
void setIsLandscape(boolean isLandscape) Indicates page orientation when exporting- Parameters:
isLandscape- Indicates page orientation when exporting
-
getLogo
byte[] getLogo()Company logo displayed in the lower left corner. Only in the first page- Returns:
- Company logo displayed in the lower left corner. Only in the first page
-
setLogo
void setLogo(byte[] logo) Company logo displayed in the lower left corner. Only in the first page- Parameters:
logo- Company logo displayed in the lower left corner. Only in the first page
-
getColor
int getColor()Color used for titles underlines- Returns:
- Color used for titles underlines
-
setColor
void setColor(int color) Color used for titles underlines- Parameters:
color- Color used for titles underlines
-