TextSpecific.setMaxLineLength

Specifies a maximum line length for the text. If this option is zero (the default) the text is broken into lines only at newline characters. However, if this option is non-zero then any line that would be longer than line length is broken just before a space character to make the line shorter than lineLength; the space character is treated as if it were a newline character.

mixintemplate TextSpecific()
setMaxLineLength
(
this T
L
)
if (
is(L == int) ||
is(L == Nullable!(int))
)

Parameters

maxLineLength L

The max line length.

Return Value

Type: auto

This item to aid method chaining.

Meta