overflow property
EnumValue
get
overflow
Gets or sets how text that is too long to display should be handled.
Possible values are TextBlock.OverflowClip and TextBlock.OverflowEllipsis. For OverflowEllipsis to work, you must constrain the available size of the TextBlock in some way, such as setting #wrap to TextBlock.None, or limiting the number of lines with #maxLines or a height constraint.
The default value is TextBlock.OverflowClip.
Implementation
_i3.EnumValue get overflow => _i4.getProperty(
this,
'overflow',
);
set
overflow
(EnumValue value)
Implementation
set overflow(_i3.EnumValue value) {
_i4.setProperty(
this,
'overflow',
value,
);
}