labelNodes property

Iterator<Node> labelNodes

This read-only property returns an iterator over the Nodes that act as labels on this Link. Setting Node#labeledLink to refer to this Link will add that Node to this collection.

Do not confuse these Nodes with the GraphObjects that are part of this Link Panel. Those objects can also be used as "labels", but not as objects to which there can be link connections, because those panel elements cannot be Nodes. Those panel objects can be used for other purposes too, such as arrowheads.

A template should not have any label nodes.

Implementation

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

Implementation

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