Bcc.EndUndo
Bcc.EndUndo()
Description
This marks the end of a started undo list end. Any entities created between the Bcc.StartUndo("my undo") and Bcc.EndUndo() will be available as a single item in the undo list.
Examples
Bcc.StartUndo("Create 3")
Bcc.AddEntity({ … })
Bcc.AddEntity({ … })
Bcc.AddEntity({ … })
Bcc.EndUndo()