resizeObjectName property

String get resizeObjectName

Gets or sets the name of the GraphObject that should get a resize handle when this part is selected. The value of this property affects the value of #resizeObject. The initial value is an empty string, meaning the whole Part itself gets any resize handle.

Implementation

_i2.String get resizeObjectName => _i4.getProperty(
      this,
      'resizeObjectName',
    );
set resizeObjectName (String value)

Implementation

set resizeObjectName(_i2.String value) {
  _i4.setProperty(
    this,
    'resizeObjectName',
    value,
  );
}