copiedParts property

Map<Part, DraggingInfo>? get copiedParts

Gets the collection of Parts that this tool has copied. The value is a Map mapping Parts to DraggingInfo Objects that have a "point" property remembering the original location of that Part. The value is null when moving instead of copying.

#draggedParts provides the map of Parts that are being moved and from which this collection was copied.

Implementation

_i3.Map<_i3.Part, _i3.DraggingInfo>? get copiedParts => _i4.getProperty(
      this,
      'copiedParts',
    );
set copiedParts (Map<Part, DraggingInfo>? value)

Implementation

set copiedParts(_i3.Map<_i3.Part, _i3.DraggingInfo>? value) {
  _i4.setProperty(
    this,
    'copiedParts',
    value ?? _i5.undefined,
  );
}