wrapFit property

EnumValue get wrapFit

Used as a value for TextBlock#wrap, the TextBlock will wrap text, making the width of the TextBlock equal to the width of the longest line.

Implementation

static _i3.EnumValue get wrapFit => _i4.getProperty(
      _declaredTextBlock,
      'WrapFit',
    );
set wrapFit (EnumValue value)

Implementation

static set wrapFit(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredTextBlock,
    'WrapFit',
    value,
  );
}