rotateObjectName property

String get rotateObjectName

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

Implementation

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

Implementation

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