resizable property

bool get resizable

Gets or sets whether the user may resize this part. The initial value is false.

If you set this to true you may also want to set #resizeObjectName to the GraphObject#named element that you want the user to resize. It is also commonplace to add a TwoWay Binding of that named element's GraphObject#desiredSize in order to save to the model data the value that the user set via the ResizingTool.

Implementation

_i2.bool get resizable => _i4.getProperty(
      this,
      'resizable',
    );
set resizable (bool value)

Implementation

set resizable(_i2.bool value) {
  _i4.setProperty(
    this,
    'resizable',
    value,
  );
}