wrappingColumn property

num wrappingColumn

Gets or sets the maximum number of columns.

The default is NaN, meaning not to limit the number of columns. 1 is a common value to produce a single column of parts.

Implementation

_i2.num get wrappingColumn => _i4.getProperty(
      this,
      'wrappingColumn',
    );
void wrappingColumn=(num value)

Implementation

set wrappingColumn(_i2.num value) {
  _i4.setProperty(
    this,
    'wrappingColumn',
    value,
  );
}