resizeObject property

GraphObject get resizeObject

This read-only property returns the GraphObject that should get resize handles when this part is selected. The value will be in the visual tree of this Part and is usually named with the value of #resizeObjectName.

Implementation

_i3.GraphObject get resizeObject => _i4.getProperty(
      this,
      'resizeObject',
    );
set resizeObject (GraphObject value)

Implementation

set resizeObject(_i3.GraphObject value) {
  _i4.setProperty(
    this,
    'resizeObject',
    value,
  );
}