Package io.keikai.model
Interface STableStyleInfo
-
- All Superinterfaces:
TableStyleInfo
- All Known Implementing Classes:
AbstractTableStyleInfoAdv
,TableStyleInfoImpl
public interface STableStyleInfo extends TableStyleInfo
Table style info.- Since:
- 3.8.0
- Author:
- henri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
STableStyle
getTableStyle(SBook book)
Returns styles used in this TableStyleInfo associated with the specified book.boolean
isShowColumnStripes()
boolean
isShowFirstColumn()
boolean
isShowLastColumn()
boolean
isShowRowStripes()
void
setName(String name)
void
setShowColumnStripes(boolean b)
void
setShowFirstColumn(boolean b)
void
setShowLastColumn(boolean b)
void
setShowRowStripes(boolean b)
-
Methods inherited from interface org.apache.poi.ss.usermodel.TableStyleInfo
getStyle
-
-
-
-
Method Detail
-
getName
String getName()
- Specified by:
getName
in interfaceTableStyleInfo
- Returns:
- the name of the style (may reference a built-in style)
-
setName
void setName(String name)
-
isShowColumnStripes
boolean isShowColumnStripes()
- Specified by:
isShowColumnStripes
in interfaceTableStyleInfo
- Returns:
- true if alternating column styles should be applied
-
setShowColumnStripes
void setShowColumnStripes(boolean b)
-
isShowRowStripes
boolean isShowRowStripes()
- Specified by:
isShowRowStripes
in interfaceTableStyleInfo
- Returns:
- true if alternating row styles should be applied
-
setShowRowStripes
void setShowRowStripes(boolean b)
-
isShowLastColumn
boolean isShowLastColumn()
- Specified by:
isShowLastColumn
in interfaceTableStyleInfo
- Returns:
- true if the distinct last column style should be applied
-
setShowLastColumn
void setShowLastColumn(boolean b)
-
isShowFirstColumn
boolean isShowFirstColumn()
- Specified by:
isShowFirstColumn
in interfaceTableStyleInfo
- Returns:
- true if the distinct first column style should be applied
-
setShowFirstColumn
void setShowFirstColumn(boolean b)
-
getTableStyle
STableStyle getTableStyle(SBook book)
Returns styles used in this TableStyleInfo associated with the specified book.- Parameters:
book
-- Returns:
- Since:
- 3.8.3
-
-