AboutSupportDeveloper GuideVersion 41.129.83.3

Configuration for find-in-page requests.

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

Properties

findNext?: boolean
false

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

Searches in the forward direction (backward otherwise)
matchCase?: boolean
false

Enables case-sensitive searching.
medialCapitalAsWordStart?: boolean
false

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

Only searches from the start of words.