Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SearchFoundFlags Enumeration
Example Example


In This Topic
    SearchFoundFlags Enumeration
    In This Topic
    Specifies where the search string is found.
    Syntax
    'Declaration
     
    
    Public Enum SearchFoundFlags 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As SearchFoundFlags
    public enum SearchFoundFlags : System.Enum 
    Members
    MemberDescription
    CellNote[2] Indicates that the string is found in the cell note
    CellTag[4] Indicates that the string is found in the cell tag
    CellText[1] Indicates that the string is found in the cell text
    Remarks

    When using the search methods for searching a cell in the data area, the value may be single member, such as "CellText", or it may be a number if the found string is in more than one.  Possible numeric values are:

    • 3 if found in cell text and cell note (1+2)
    • 5 if found in cell text and cell tag (1+4)
    • 6 if found in cell note and cell tag (2+4)
    • 7 if found in all three places (1+2+4)

    When using the search methods for searching a cell in the headers, the value is typically a single member.

    Example
    This example returns a search flag.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             FarPoint.Web.Spread.SearchFoundFlags

    See Also