minSize property

Size get minSize

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

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

Implementation

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

Implementation

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