AboutSupportDeveloper GuideVersion 38.126.82.64

Configuration for find-in-page requests.

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

Properties

findNext?: boolean

Default Value

false

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

Default Value

true

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

Default Value

false

Enables case-sensitive searching.
medialCapitalAsWordStart?: boolean

Default Value

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

Default Value

false

Only searches from the start of words.