Paragraph Formatter Stream
class ParagraphFormatterStream(formatter: ParagraphFormatter, appendable: Appendable) : Appendable
Content copied to clipboard
ParagraphFormatterStream wraps an Appendable with a ParagraphFormatter, so that Strings can automatically be formatted by the ParagraphFormatter before being appended to the output stream.
Author
Leslie Schultz
Parameters
formatter
The text formatter.
appendable
The Appendable that receives output text.
Constructors
Link copied to clipboard
fun ParagraphFormatterStream(formatter: ParagraphFormatter, appendable: Appendable)
Content copied to clipboard
Construct a new ParagraphFormatterStream.
Functions
Link copied to clipboard
open override fun append( csq: CharSequence, start: Int, end: Int): Appendable
Content copied to clipboard