minSize property

Size get minSize

Gets or sets the minimum size of this GraphObject in container coordinates (either a Panel or the document). Any new value must be of type Size; NaN values are treated as 0.

You cannot modify the width or height of the value of this property -- if you want to change the minSize you must set this property to a different Size. The default value is zero by zero. A containing Panel will determine the actual size of this object.

Implementation

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

Implementation

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