remove method

void remove(
  1. Part part
)

Removes a Part from its Layer, provided the Layer is in this Diagram. Removing a Node will also remove any Links that are connected with it. Removing a Group will also remove all of its members. Removing a Link will also remove all of its label Nodes, if it has any. @param {Part} part @see #add

Implementation

void remove(_i3.Part part) {
  _i4.callMethod(
    this,
    'remove',
    [part],
  );
}