KiteMetadata

data class KiteMetadata(val title: String? = null, val authors: List<String> = emptyList(), val language: String? = null, val rightToLeft: Boolean = false)

Format-neutral document metadata, for a viewer's title bar / info panel. PDF fills it from /Info and XMP; EPUB from the OPF dc: elements.

Constructors

Link copied to clipboard
constructor(title: String? = null, authors: List<String> = emptyList(), language: String? = null, rightToLeft: Boolean = false)

Properties

Link copied to clipboard
Link copied to clipboard

BCP-47 language tag when the document declares one.

Link copied to clipboard

True when pages progress right-to-left (EPUB page-progression-direction="rtl", PDF /ViewerPreferences /Direction /R2L). A paged viewer should put page N+1 visually LEFT of page N.

Link copied to clipboard