枚举类 FindLookIn

java.lang.Object
java.lang.Enum<FindLookIn>
com.grapecity.documents.excel.FindLookIn
所有已实现的接口:
Serializable, Comparable<FindLookIn>, Constable

public enum FindLookIn extends Enum<FindLookIn>
指定要搜索的数据类型。
  • 枚举常量详细资料

    • Formulas

      public static final FindLookIn Formulas
      在公式中搜索(xlFormulas)。
    • Texts

      public static final FindLookIn Texts
      在文本中搜索(xlValues)
    • Values

      public static final FindLookIn Values
      在值中进行类型敏感的搜索。支持双精度、字符串(禁用通配符匹配)、日期、布尔、日历和计算错误。
    • Comments

      public static final FindLookIn Comments
      在注释中搜索(xlNotes)。
    • OnlyFormulas

      public static final FindLookIn OnlyFormulas
      在公式中进行搜索。如果一个单元格的HasFormula属性为false,将跳过该单元格。
    • TextsExcludeFormulaCell

      public static final FindLookIn TextsExcludeFormulaCell
      在文本中搜索。如果单元格的HasFormula属性为true,将跳过该单元格。
  • 方法详细资料

    • values

      public static FindLookIn[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static FindLookIn valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • forValue

      public static FindLookIn forValue(int value)