Share

AcDbDatabase::abortDeepClone

C++

void abortDeepClone(
    AcDbIdMapping& idMap
);

Description

Triggers an AcEditor notification that the deepClone operation identified by idMap has been aborted. The AcDbIdMapping object will uniquely identify a deepClone operation.

Note

This function does not actually abort a deepClone operation.

An ObjectARX program needs to call this function only if it has made calls to deepCloneObjects() with the deferXlation argument set to Adesk::kTrue and does not plan to finish the operation by making a final call to deepCloneObjects() with deferXlation set to Adesk::kFalse. In such a situation, the ObjectARX program is also responsible for undoing all changes made by the deepClone operation up to the point where it is decided to stop.

Parameters

Parameters Description
idMap Input used in the deepClone operation being aborted

Links

AcDbDatabase Class

Was this information helpful?