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
-
Method Summary
Modifier and TypeMethodDescriptionReturns the cell's background color.Returns the cell's font color.Returns the cell's font name.int
Returns the cell's font size.Returns the list of the cell's font style.void
setBackgroundColor
(String backgroundColor) Sets the cell's background color.void
setFontColor
(String fontColor) Sets the cell's font color.void
setFontName
(String fontName) Sets the cell's font name.void
setFontSize
(int fontSize) Sets the cell's font size.void
setFontStyles
(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.
-