expandSubGraph method

void expandSubGraph()

Show each member node and link, and perhaps recursively expand nested subgraphs. This may change the value of Part#isVisible of the whole subgraph and the parts owned by those member nodes and links. However, this group's visibility is unchanged.

This sets #isSubGraphExpanded to true on this group and on all of the nested Groups. This will expand a nested group only if its #wasSubGraphExpanded property was true.

This method does not perform a transaction or start any animation.

To expand trees made of Nodes and Links, use Node#expandTree.

Implementation

void expandSubGraph() {
  _i4.callMethod(
    this,
    'expandSubGraph',
    [],
  );
}