nodes property

Iterator<Node> get nodes

This read-only property returns an iterator of all Nodes and Groups in the Diagram.

This includes both data-bound and unbound nodes, and both top-level nodes and nodes inside Groups. All of the simple Parts are accessible via the #parts property.

Implementation

_i3.Iterator<_i3.Node> get nodes => _i4.getProperty(
      this,
      'nodes',
    );
set nodes (Iterator<Node> value)

Implementation

set nodes(_i3.Iterator<_i3.Node> value) {
  _i4.setProperty(
    this,
    'nodes',
    value,
  );
}