Share

beginInsert Method

Overload List

Method Description
AcEditorReactor::beginInsert (AcDbDatabase*, AcGeMatrix3d&, AcDbDatabase*) This callback function indicates that the drawing database pFrom is being added to the drawing database pTo and the transformation matrix xform is applied on the inserted data. It is triggered by the INSERT* command, or if the equivalent of pTo->insert(xform, pFrom) is called.Note: In the context of the AutoCAD INSERT command, the "insert" process that this notification deals with is strictly the operation of importing objects from a drawing file on disk into the drawing currently in the AutoCAD editor. So, if the INSERT command is inserting a block that is already in the drawing, then no importation... more
AcEditorReactor::beginInsert (AcDbDatabase*, ACHAR*, AcDbDatabase*) This callback function indicates that the drawing database pFrom is being added to the drawing database pTo as a block with the name pBlockName. It is triggered by the INSERT command, or if the equivalent of pTo->insert(blockId, pBlockName, pFrom) is called.Note: In the context of the AutoCAD INSERT command, the "insert" process that this notification deals with is strictly the operation of importing objects from a drawing file on disk into the drawing currently in the AutoCAD editor. So, if the INSERT command is inserting a block that is already in the drawing, then no importation process occurs... more

Was this information helpful?