Enum Class TableStyleElementType

java.lang.Object
java.lang.Enum<TableStyleElementType>
com.grapecity.documents.excel.TableStyleElementType
所有已实现的接口:
Serializable, Comparable<TableStyleElementType>, Constable

public enum TableStyleElementType extends Enum<TableStyleElementType>
Specifies the table style element used.
  • 枚举常量详细资料

    • WholeTable

      public static final TableStyleElementType WholeTable
      Specifies the entire table.
    • HeaderRow

      public static final TableStyleElementType HeaderRow
      Specifes the header row
    • TotalRow

      public static final TableStyleElementType TotalRow
      Specifies the total row.
    • GrandTotalRow

      public static final TableStyleElementType GrandTotalRow
      Specifies the grand total row in pivot.
    • FirstColumn

      public static final TableStyleElementType FirstColumn
      Specifies the first column.
    • LastColumn

      public static final TableStyleElementType LastColumn
      Specifies the last column
    • GrandTotalColumn

      public static final TableStyleElementType GrandTotalColumn
      Specifies the grand total column in pivot.
    • FirstRowStripe

      public static final TableStyleElementType FirstRowStripe
      Specifies row stripe1.
    • SecondRowStripe

      public static final TableStyleElementType SecondRowStripe
      Specifies row stripe2.
    • FirstColumnStripe

      public static final TableStyleElementType FirstColumnStripe
      Specifies column stripe1.
    • SecondColumnStripe

      public static final TableStyleElementType SecondColumnStripe
      Specifies column stripe2.
    • FirstHeaderCell

      public static final TableStyleElementType FirstHeaderCell
      Specifies the first header cell.
    • LastHeaderCell

      public static final TableStyleElementType LastHeaderCell
      Specifies the last header cell.
    • FirstTotalCell

      public static final TableStyleElementType FirstTotalCell
      Specifies the first total cell.
    • LastTotalCell

      public static final TableStyleElementType LastTotalCell
      Specifies the last total cell.
    • FirstSubtotalColumn

      public static final TableStyleElementType FirstSubtotalColumn
      Specifies the subtotal column1.
    • SecondSubtotalColumn

      public static final TableStyleElementType SecondSubtotalColumn
      Specifies the subtotal column2.
    • ThirdSubtotalColumn

      public static final TableStyleElementType ThirdSubtotalColumn
      Specifies the subtotal column3.
    • FirstSubtotalRow

      public static final TableStyleElementType FirstSubtotalRow
      Specifies the subtotal row1.
    • SecondSubtotalRow

      public static final TableStyleElementType SecondSubtotalRow
      Specifies the subtotal row2.
    • ThirdSubtotalRow

      public static final TableStyleElementType ThirdSubtotalRow
      Specifies the subtotal row3.
    • BlankRow

      public static final TableStyleElementType BlankRow
      Specifies the blank row.
    • FirstColumnSubheading

      public static final TableStyleElementType FirstColumnSubheading
      Specifies column subheading1.
    • SecondColumnSubheading

      public static final TableStyleElementType SecondColumnSubheading
      Specifies column subheading2.
    • ThirdColumnSubheading

      public static final TableStyleElementType ThirdColumnSubheading
      Specifies column subheading3.
    • FirstRowSubheading

      public static final TableStyleElementType FirstRowSubheading
      Specifies row subheading1.
    • SecondRowSubheading

      public static final TableStyleElementType SecondRowSubheading
      Specifies row subheading2.
    • ThirdRowSubheading

      public static final TableStyleElementType ThirdRowSubheading
      Specifies row subheading3.
    • PageFieldLabels

      public static final TableStyleElementType PageFieldLabels
      Specifies page field labels.
    • PageFieldValues

      public static final TableStyleElementType PageFieldValues
      Specifies page field values.
    • UnselectedItemWithData

      public static final TableStyleElementType UnselectedItemWithData
      Specifies an item that is not selected that contains data.
    • UnselectedItemWithNoData

      public static final TableStyleElementType UnselectedItemWithNoData
      Specifies an item that is not selected that does not contain data.
    • SelectedItemWithData

      public static final TableStyleElementType SelectedItemWithData
      Specifies a selected item that contains data.
    • SelectedItemWithNoData

      public static final TableStyleElementType SelectedItemWithNoData
      Specifies a selected item that does not contain data.
    • HoveredUnselectedItemWithData

      public static final TableStyleElementType HoveredUnselectedItemWithData
      Specifies an item, hovered over by the user, that is not selected and that contains data.
    • HoveredSelectedItemWithData

      public static final TableStyleElementType HoveredSelectedItemWithData
      Specifies a selected item, hovered over by the user, that contains data.
    • HoveredUnselectedItemWithNoData

      public static final TableStyleElementType HoveredUnselectedItemWithNoData
      Specifies a selected item, hovered over by the user, that is not selected and that does not contain data.
    • HoveredSelectedItemWithNoData

      public static final TableStyleElementType HoveredSelectedItemWithNoData
      Specifies a selected item, hovered over by the user, that does not contain data.
  • 方法详细资料

    • values

      public static TableStyleElementType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TableStyleElementType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • forValue

      public static TableStyleElementType forValue(int value)