Document Solutions for Excel, .NET Edition | Document Solutions
GrapeCity.Documents.Excel Namespace / FindLookIn Enumeration
In This Topic
    FindLookIn Enumeration
    In This Topic
    Specifies the type of data to search.
    Syntax
    public enum FindLookIn : System.Enum 
    Members
    MemberDescription
    Comments Searches in Comments (xlNotes).
    Formulas Searches in formulas (Similar to xlFormulas in MS Excel).
    OnlyFormulasSearches in formulas. If the IRange.HasFormula property of a cell is false, the cell will be skipped.
    Texts Searches in Texts (Similar to xlValues in MS Excel).
    TextsExcludeFormulaCellSearches in Texts. If the IRange.HasFormula property of a cell is true, the cell will be skipped.
    ValuesPerforms type sensitive search in values. Supports System.Double, System.String (Wildcard match is disabled), System.DateTime, System.Boolean, System.TimeSpan, and CalcError. Non-System.Double number value matches its System.Double equivalent.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Excel.FindLookIn

    See Also