maxSize property

Size get maxSize

Gets or sets the maximum size to which the user can resize. The effective maximum size is the minimum of this value and the GraphObject#maxSize, independently in each direction.

The default value is go.Size(9999, 9999). Any new value must be of type Size; NaN width or height values are treated as Infinity. Setting this property does not raise any events.

Implementation

_i3.Size get maxSize => _i4.getProperty(
      this,
      'maxSize',
    );
set maxSize (Size value)

Implementation

set maxSize(_i3.Size value) {
  _i4.setProperty(
    this,
    'maxSize',
    value,
  );
}