[]
Serializable, Comparable<FindLookIn>, ConstableIRange.find(Object,IRange,FindOptions). Used with FindOptions.setLookIn(FindLookIn) to control where the find operation searches: formulas, displayed text, raw values, or comments.
worksheet.getRange("A1").setValue("Hello");
worksheet.getRange("A2").setFormula("=A1");
worksheet.getRange("A3").addComment("review this");
IRange searchRange = worksheet.getRange("A1:A3");
FindOptions options = new FindOptions();
options.setLookIn(FindLookIn.Formulas);
IRange found = searchRange.find("A1", null, options);
Enum.EnumDesc<E extends Enum<E>>static FindLookInforValue(int value) intgetValue()static FindLookInstatic FindLookIn[]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.