ParagraphStyleInfo

data class ParagraphStyleInfo(val lineHeight: Double? = null, val letterSpacing: Double? = null, val spacing: Double? = null, val indent: Double? = null)

Immutable information about the style of paragraphs in a document. When any of the fields is null, the default value supplied by the underlying renderer is used.

Parameters

lineHeight

height of each line, multiplied by the font size

letterSpacing

whitespace between letters, multiplied by the font size

spacing

whitespace between paragraphs, multiplied by the font size

indent

whitespace at the start of each paragraph, following LaTeX's policy, multiplied by the font size

Constructors

Link copied to clipboard
constructor(lineHeight: Double? = null, letterSpacing: Double? = null, spacing: Double? = null, indent: Double? = null)

Properties

Link copied to clipboard
val indent: Double? = null
Link copied to clipboard
val letterSpacing: Double? = null
Link copied to clipboard
val lineHeight: Double? = null
Link copied to clipboard
val spacing: Double? = null

Functions

Link copied to clipboard