[]
        
(Showing Draft Content)

TableStyleElementType

Enum Class TableStyleElementType

java.lang.Object
java.lang.Enum<TableStyleElementType>
com.grapecity.documents.excel.TableStyleElementType
All Implemented Interfaces:
Serializable, Comparable<TableStyleElementType>, Constable

public enum TableStyleElementType extends Enum<TableStyleElementType>
Specifies the table style element used.
  • Enum Constant Details

    • 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 the first row stripes.
    • SecondRowStripe

      public static final TableStyleElementType SecondRowStripe
      Specifies the second row stripes.
    • FirstColumnStripe

      public static final TableStyleElementType FirstColumnStripe
      Specifies the first column stripes.
    • SecondColumnStripe

      public static final TableStyleElementType SecondColumnStripe
      Specifies the second column stripes.
    • 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 first subtotal column in pivot.
    • SecondSubtotalColumn

      public static final TableStyleElementType SecondSubtotalColumn
      Specifies the second subtotal column in pivot.
    • ThirdSubtotalColumn

      public static final TableStyleElementType ThirdSubtotalColumn
      Specifies the third subtotal column in pivot.
    • FirstSubtotalRow

      public static final TableStyleElementType FirstSubtotalRow
      Specifies the first subtotal row in pivot.
    • SecondSubtotalRow

      public static final TableStyleElementType SecondSubtotalRow
      Specifies the second subtotal row in pivot.
    • ThirdSubtotalRow

      public static final TableStyleElementType ThirdSubtotalRow
      Specifies the third subtotal row in pivot.
    • BlankRow

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

      public static final TableStyleElementType FirstColumnSubheading
      Specifies the first column subheading in pivot.
    • SecondColumnSubheading

      public static final TableStyleElementType SecondColumnSubheading
      Specifies the second column subheading in pivot.
    • ThirdColumnSubheading

      public static final TableStyleElementType ThirdColumnSubheading
      Specifies the third column subheading in pivot.
    • FirstRowSubheading

      public static final TableStyleElementType FirstRowSubheading
      Specifies the first row subheading in pivot.
    • SecondRowSubheading

      public static final TableStyleElementType SecondRowSubheading
      Specifies the second row subheading in pivot.
    • ThirdRowSubheading

      public static final TableStyleElementType ThirdRowSubheading
      Specifies the third row subheading in pivot.
    • 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.
    • TimelineSelectionLabel

      public static final TableStyleElementType TimelineSelectionLabel
    • TimelineTimeLevel

      public static final TableStyleElementType TimelineTimeLevel
    • TimelinePeriodLabels1

      public static final TableStyleElementType TimelinePeriodLabels1
    • TimelinePeriodLabels2

      public static final TableStyleElementType TimelinePeriodLabels2
    • TimelineSelectedTimeBlock

      public static final TableStyleElementType TimelineSelectedTimeBlock
    • TimelineUnselectedTimeBlock

      public static final TableStyleElementType TimelineUnselectedTimeBlock
    • TimelineSelectedTimeBlockSpace

      public static final TableStyleElementType TimelineSelectedTimeBlockSpace
  • Method Details

    • values

      public static TableStyleElementType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()
    • forValue

      public static TableStyleElementType forValue(int value)