locationObject property

GraphObject get locationObject

This read-only property returns the GraphObject that determines the location of this Part. The value will be in the visual tree of this Part and is usually named with the value of #locationObjectName.

Implementation

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

Implementation

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