[]
        
(Showing Draft Content)

CellControlType

Enum Class CellControlType

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

public enum CellControlType extends Enum<CellControlType>
Represents the type of cell control.
  • Enum Constant Details

    • None

      public static final CellControlType None
      Default type of cell control. The cell control object on a range with no cell control formatting will return None as its type.
    • Unknown

      public static final CellControlType Unknown
      Type associated with a future CellControl object for backward compatibility.
    • Checkbox

      public static final CellControlType Checkbox
      Indicates that the cell control is checkbox.
  • Method Details

    • values

      public static CellControlType[] 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 CellControlType 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