Difficulty: Easy
Correct Answer: explode
Explanation:
Introduction / Context:
Modern AutoCAD provides BEDIT (Block Editor) and REFEDIT for in-place editing of blocks. Historically, earlier versions required less direct methods. Knowing this legacy workflow helps when working in older environments or when collaborating with firms using older releases.
Given Data / Assumptions:
Concept / Approach:
Before widespread block editing tools, a common approach was to EXPLODE the block into its constituent entities, modify the geometry, and then redefine the block (or create a new one). While functional, this method can break attribute definitions and lose ByBlock behavior, so caution is required.
Step-by-Step Solution:
Select the block and use the EXPLODE command to convert it into individual entities.Make required changes to lines, arcs, and attributes (if present, reinsert attributes).Create a new block or redefine the existing one using BLOCK.
Verification / Alternative check:
Compare with newer versions using BEDIT/REFEDIT where the block remains a single object; the legacy approach requires re-creation to return to block form, confirming that exploding was the older method.
Why Other Options Are Wrong:
Common Pitfalls:
Exploding blocks with attributes or dynamic parameters (in newer files) can cause data loss; always back up the definition before exploding and reassembling.
Final Answer:
explode
Discussion & Comments