selectionObject property

GraphObject get selectionObject

This read-only property returns the GraphObject that should get a selection handle when this part is selected. The value will be in the visual tree of this Part and is usually named with the value of #selectionObjectName. When the #selectionObjectName is unspecified, this whole Part is used as the "selection object".

Implementation

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

Implementation

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