maximum property

num get maximum

Gets or sets the maximum row height or column width, in local coordinates. The maximum describes the row height if #isRow is true; otherwise this describes the column width.

The value must be non-negative. The default value is Infinity. The arranged height of all objects in this row, or the arranged width of all objects in this column, will be no greater than this value.

Implementation

_i2.num get maximum => _i4.getProperty(
      this,
      'maximum',
    );
set maximum (num value)

Implementation

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