[]
Specifies the type of data to search.
public enum FindLookIn
Comments = 3
Searches in Comments (xlNotes).
Formulas = 0
Searches in formulas (Similar to xlFormulas in MS Excel).
OnlyFormulas = 4
Searches in formulas. If the HasFormula property of a cell is false, the cell will be skipped.
Texts = 1
Searches in Texts (Similar to xlValues in MS Excel).
TextsExcludeFormulaCell = 5
Searches in Texts. If the HasFormula property of a cell is true, the cell will be skipped.
Values = 2
Performs type sensitive search in values. Supports double, string (Wildcard match is disabled), System.DateTime, bool, System.TimeSpan, and CalcError. Non-double number value matches its double equivalent.