locationObjectName property

String locationObjectName

Gets or sets the name of the GraphObject that provides the location of this Part. This name determines the value of #locationObject. The actual #location also depends on the #locationSpot.

The initial value is an empty string, meaning the whole Part itself determines the location. If you want to use a particular GraphObject in the visual tree of this Part, set this property to be the GraphObject#name of the element that you want to be the #locationObject.

Implementation

_i2.String get locationObjectName => _i4.getProperty(
      this,
      'locationObjectName',
    );
void locationObjectName=(String value)

Implementation

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