formatting property
EnumValue
get
formatting
Gets or sets the policy for trimming whitespace on each line of text.
Possible values are TextBlock#FormatTrim, which trims whitespace before and after every line of text, or TextBlock#FormatNone, which will not trim any whitespace and may be useful for preformatted text. The default is TextBlock#FormatTrim.
Implementation
_i3.EnumValue get formatting => _i4.getProperty(
this,
'formatting',
);
set
formatting
(EnumValue value)
Implementation
set formatting(_i3.EnumValue value) {
_i4.setProperty(
this,
'formatting',
value,
);
}