[]
Serializable, Comparable<SpecialCellType>, ConstableUsed as a parameter for IRange.specialCells(com.grapecity.documents.excel.SpecialCellType) to locate cells matching specific criteria such as blanks, comments, constants, formulas, merged cells, and more.
worksheet.getRange("A1").setValue("Hello");
worksheet.getRange("A3").setValue(100);
worksheet.getRange("B1:B3").setFormula("=A1");
IRange blanks = worksheet.getRange("A1:A3").specialCells(SpecialCellType.Blanks);
IRange formulas = worksheet.getRange("B1:B3").specialCells(SpecialCellType.Formulas);
Enum.EnumDesc<E extends Enum<E>>static SpecialCellTypeforValue(int value) intgetValue()static SpecialCellTypestatic SpecialCellType[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is nullvalue - The ordinal value.