Bcc.StartUndo(name)

Description

Any entities created between the StartUndo and EndUndo will be grouped so that you can utilize the Undo functionality in the software.


IMPORTANT: Adding created entities to the Undo management system is required for the software to properly function!

Parameters

  • name – string value representing the name that will be displayed in the undo/redo list in the BobCAD software

Return

Examples


Bcc.StartUndo("My 3 Entities")

    Bcc.AddEntity({})

    Bcc.AddEntity({})

    Bcc.AddEntity({})    

Bcc.EndUndo()