[]
        
(Showing Draft Content)

TickMark

Enum Class TickMark

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

public enum TickMark extends Enum<TickMark>
Specifies the position of major and minor tick marks for an axis.
  • Enum Constant Details

    • None

      public static final TickMark None
      Specifies no marks.
    • Inside

      public static final TickMark Inside
      Specifies that the marks are inside the axis.
    • Outside

      public static final TickMark Outside
      Specifies that the marks are outside the axis.
    • Cross

      public static final TickMark Cross
      Specifies that the marks cross the axis.
  • Method Details

    • values

      public static TickMark[] 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 TickMark 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 TickMark forValue(int value)