ParagraphStyleInfo

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

Mutable 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
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard