PdfSearchOptions

data class PdfSearchOptions(val matchCase: Boolean = false, val matchWholeWord: Boolean = false, val consecutive: Boolean = false)

Options for PdfPage.search.

Constructors

Link copied to clipboard
constructor(matchCase: Boolean = false, matchWholeWord: Boolean = false, consecutive: Boolean = false)

Properties

Link copied to clipboard

Allows matches to overlap: the next match may start inside the previous one instead of skipping past it.

Link copied to clipboard

Matches upper- and lowercase letters exactly when true.

Link copied to clipboard

Matches whole words only when true.