didExceedMaxLines property

bool get didExceedMaxLines
inherited

Whether the text was truncated or ellipsized as laid out.

This returns the TextPainter.didExceedMaxLines of the underlying TextPainter.

Valid only after layout.

Implementation

bool get didExceedMaxLines {
  assert(!debugNeedsLayout);
  return _textPainter.didExceedMaxLines;
}