AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface FindInPageOptions

    Configuration for find-in-page requests.

    interface FindInPageOptions {
        findNext?: boolean;
        forward?: boolean;
        matchCase?: boolean;
        medialCapitalAsWordStart?: boolean;
        wordStart?: boolean;
    }
    Index
    findNext?: boolean

    Begins a new text-finding session; should be true for first request only, and false on subsequent requests.

    false
    
    forward?: boolean

    Searches in the forward direction (backward otherwise)

    true
    
    matchCase?: boolean

    Enables case-sensitive searching.

    false
    
    medialCapitalAsWordStart?: boolean

    When combined with wordStart, accepts a match in the middle of a word if the match begins with an uppercase letter followed by a
    lowercase or non-letter. Accepts several other intra-word matches.

    false
    
    wordStart?: boolean

    Only searches from the start of words.

    false