PdfSearchHighlightStyle

data class PdfSearchHighlightStyle(val match: PdfSearchHighlightDecoration = PdfSearchHighlightDecoration( fillColor = Color(0x66FFEB3B), ), val selectedMatch: PdfSearchHighlightDecoration = PdfSearchHighlightDecoration( fillColor = Color(0x80FF9800), strokeColor = Color(0xFFFF6D00), strokeWidth = 1.dp, ))

Visual treatment for all matches and the currently selected match.

Constructors

Link copied to clipboard
constructor(match: PdfSearchHighlightDecoration = PdfSearchHighlightDecoration( fillColor = Color(0x66FFEB3B), ), selectedMatch: PdfSearchHighlightDecoration = PdfSearchHighlightDecoration( fillColor = Color(0x80FF9800), strokeColor = Color(0xFFFF6D00), strokeWidth = 1.dp, ))

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Decoration used for every non-selected match.

Link copied to clipboard

Decoration used for the currently selected match.