wrap property
EnumValue
get
wrap
Gets or sets whether the text should be wrapped if it is too long to fit on one line.
Possible values are TextBlock.WrapDesiredSize, TextBlock.WrapFit, TextBlock.WrapBreakAll, and TextBlock.None.
The default value is TextBlock.WrapDesiredSize.
Implementation
_i3.EnumValue get wrap => _i4.getProperty(
this,
'wrap',
);
set
wrap
(EnumValue value)
Implementation
set wrap(_i3.EnumValue value) {
_i4.setProperty(
this,
'wrap',
value,
);
}