Begin Transaction
transaction_beginBegin an undo transaction to mark a rollback point, allowing all later changes to be reverted via transaction_rollback. Works with both AutoCAD COM undo marks and DXF snapshots.
Instructions
Begin a transaction (undo mark).
COM backend: Sets AutoCAD undo mark. All subsequent operations can be rolled back to this point with transaction_rollback.
ezdxf backend: Saves a DXF snapshot. Rollback restores the full document state to this point.
Always pair with transaction_commit or transaction_rollback.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||