[]
        
(Showing Draft Content)

CornerPosition

Enum Class CornerPosition

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

public enum CornerPosition extends Enum<CornerPosition>
Describe the position of the corner fold in a cell.
  • Enum Constant Details

    • LeftTop

      public static final CornerPosition LeftTop
      Indicates that the folded corner is in the upper left corner.
    • RightTop

      public static final CornerPosition RightTop
      Indicates that the folded corner is in the upper right corner.
    • LeftBottom

      public static final CornerPosition LeftBottom
      Indicates that the folded corner is in the lower left corner.
    • RightBottom

      public static final CornerPosition RightBottom
      Indicates that the folded corner is in the lower right corner.
  • Method Details

    • values

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