Class DataFormat
java.lang.Object
com.orchestranetworks.addon.dex.configuration.DataFormat
Defines the formatting of an Excel file's data cell.
- Since:
 - 2.3.0
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionReturns the cell's background color.Returns the cell's font color.Returns the cell's font name.intReturns the cell's font size.Returns the list of the cell's font style.voidsetBackgroundColor(String backgroundColor) Sets the cell's background color.voidsetFontColor(String fontColor) Sets the cell's font color.voidsetFontName(String fontName) Sets the cell's font name.voidsetFontSize(int fontSize) Sets the cell's font size.voidsetFontStyles(List<FontStyle> fontStyles) Sets the list of the cell's font style. 
- 
Constructor Details
- 
DataFormat
public DataFormat() 
 - 
 - 
Method Details
- 
getFontName
Returns the cell's font name. - 
setFontName
Sets the cell's font name. - 
getFontSize
public int getFontSize()Returns the cell's font size. - 
setFontSize
public void setFontSize(int fontSize) Sets the cell's font size. - 
getFontStyles
Returns the list of the cell's font style. - 
setFontStyles
Sets the list of the cell's font style. - 
getFontColor
Returns the cell's font color. - 
setFontColor
Sets the cell's font color. - 
getBackgroundColor
Returns the cell's background color. - 
setBackgroundColor
Sets the cell's background color. 
 -