Package org.apache.poi.ss.usermodel
Interface TableStyleInfo
-
- All Known Implementing Classes:
XSSFTableStyleInfo
public interface TableStyleInfo
style information for a specific table instance, referencing the document style and indicating which optional portions of the style to apply.- Since:
- 3.17 beta 1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
TableStyle
getStyle()
boolean
isShowColumnStripes()
boolean
isShowFirstColumn()
boolean
isShowLastColumn()
boolean
isShowRowStripes()
-
-
-
Method Detail
-
isShowColumnStripes
boolean isShowColumnStripes()
- Returns:
- true if alternating column styles should be applied
-
isShowRowStripes
boolean isShowRowStripes()
- Returns:
- true if alternating row styles should be applied
-
isShowFirstColumn
boolean isShowFirstColumn()
- Returns:
- true if the distinct first column style should be applied
-
isShowLastColumn
boolean isShowLastColumn()
- Returns:
- true if the distinct last column style should be applied
-
getName
java.lang.String getName()
- Returns:
- the name of the style (may reference a built-in style)
-
getStyle
TableStyle getStyle()
- Returns:
- style definition
-
-