Interface STableStyleInfo

All Superinterfaces:
org.apache.poi.ss.usermodel.TableStyleInfo
All Known Implementing Classes:
AbstractTableStyleInfoAdv, TableStyleInfoImpl

public interface STableStyleInfo extends org.apache.poi.ss.usermodel.TableStyleInfo
Table style info.
Since:
3.8.0
Author:
henri
  • Method Details

    • getName

      String getName()
      Specified by:
      getName in interface org.apache.poi.ss.usermodel.TableStyleInfo
    • setName

      void setName(String name)
    • isShowColumnStripes

      boolean isShowColumnStripes()
      Specified by:
      isShowColumnStripes in interface org.apache.poi.ss.usermodel.TableStyleInfo
    • setShowColumnStripes

      void setShowColumnStripes(boolean b)
    • isShowRowStripes

      boolean isShowRowStripes()
      Specified by:
      isShowRowStripes in interface org.apache.poi.ss.usermodel.TableStyleInfo
    • setShowRowStripes

      void setShowRowStripes(boolean b)
    • isShowLastColumn

      boolean isShowLastColumn()
      Specified by:
      isShowLastColumn in interface org.apache.poi.ss.usermodel.TableStyleInfo
    • setShowLastColumn

      void setShowLastColumn(boolean b)
    • isShowFirstColumn

      boolean isShowFirstColumn()
      Specified by:
      isShowFirstColumn in interface org.apache.poi.ss.usermodel.TableStyleInfo
    • 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