Package io.keikai.model
Interface STableStyleInfo
- All Known Implementing Classes:
AbstractTableStyleInfoAdv,TableStyleInfoImpl
public interface STableStyleInfo
Table style info.
POI removal: no longer extends POI's
TableStyleInfo. The accompanying STable / TableImpl POI parent
cleanup landed in the same wave so the TableStyleInfo getStyle()
contract is no longer required.
- Since:
- 3.8.0
- Author:
- henri
-
Method Summary
Modifier and TypeMethodDescriptiongetName()getTableStyle(SBook book) Returns styles used in this TableStyleInfo associated with the specified book.booleanbooleanbooleanbooleanvoidvoidsetShowColumnStripes(boolean b) voidsetShowFirstColumn(boolean b) voidsetShowLastColumn(boolean b) voidsetShowRowStripes(boolean b)
-
Method Details
-
getName
String getName() -
setName
-
isShowColumnStripes
boolean isShowColumnStripes() -
setShowColumnStripes
void setShowColumnStripes(boolean b) -
isShowRowStripes
boolean isShowRowStripes() -
setShowRowStripes
void setShowRowStripes(boolean b) -
isShowLastColumn
boolean isShowLastColumn() -
setShowLastColumn
void setShowLastColumn(boolean b) -
isShowFirstColumn
boolean isShowFirstColumn() -
setShowFirstColumn
void setShowFirstColumn(boolean b) -
getTableStyle
Returns styles used in this TableStyleInfo associated with the specified book.- Parameters:
book-- Returns:
- Since:
- 3.8.3
-