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 Details
-
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
String getName()- Returns:
- the name of the style (may reference a built-in style)
-
getStyle
TableStyle getStyle()- Returns:
- style definition
-