How to Set Drawing Limits in AutoCAD Quickly and Easily
To set drawing limits in AutoCAD, use the
LIMITS command, then specify the lower-left and upper-right corners of your drawing area. This defines the workspace boundary and helps control the grid and zoom extents.Syntax
The LIMITS command in AutoCAD sets the drawing boundaries by defining two points:
- Lower-left corner: The starting point of the drawing limits, usually at coordinates (0,0).
- Upper-right corner: The opposite corner that defines the maximum size of the drawing area.
After setting limits, use ZOOM and select All to adjust the view to the new limits.
autocad command line
Command: LIMITS Specify lower left corner or [ON/OFF] <0,0>: 0,0 Specify upper right corner <420,297>: 420,297 Command: ZOOM Specify corner of window, enter a scale factor (nX or nXP), or [All/Center/Dynamic/Extents/Previous/Scale/Window] <All>: All
Output
Drawing limits set from (0,0) to (420,297) and view zoomed to fit limits.
Example
This example sets the drawing limits to a standard A3 paper size in millimeters (420 by 297) and zooms to fit the limits.
autocad command line
Command: LIMITS Specify lower left corner or [ON/OFF] <0,0>: 0,0 Specify upper right corner <420,297>: 420,297 Command: ZOOM Specify corner of window, enter a scale factor (nX or nXP), or [All/Center/Dynamic/Extents/Previous/Scale/Window] <All>: All
Output
Drawing limits set from (0,0) to (420,297) and view zoomed to fit limits.
Common Pitfalls
- Not setting the limits starting at (0,0) can cause confusion with grid and snap settings.
- Forgetting to use
ZOOM ALLafter setting limits means the view won't update to the new boundaries. - Setting limits too small or too large can restrict drawing or cause performance issues.
Always confirm limits suit your project size.
autocad command line
Wrong way: Command: LIMITS Specify lower left corner or [ON/OFF] <0,0>: 100,100 Specify upper right corner <420,297>: 500,500 Command: ZOOM Specify corner of window, enter a scale factor (nX or nXP), or [All/Center/Dynamic/Extents/Previous/Scale/Window] <All>: Right way: Command: LIMITS Specify lower left corner or [ON/OFF] <0,0>: 0,0 Specify upper right corner <420,297>: 420,297 Command: ZOOM Specify corner of window, enter a scale factor (nX or nXP), or [All/Center/Dynamic/Extents/Previous/Scale/Window] <All>: All
Quick Reference
Use this quick guide to set drawing limits effectively:
| Step | Command/Action | Description |
|---|---|---|
| 1 | LIMITS | Start the command to set drawing boundaries. |
| 2 | Specify lower-left corner | Usually enter 0,0 to start at origin. |
| 3 | Specify upper-right corner | Enter max drawing size, e.g., 420,297 for A3. |
| 4 | ZOOM | Adjust view after setting limits. |
| 5 | All | Zooms to fit the new drawing limits. |
Key Takeaways
Use the LIMITS command to define your drawing workspace boundaries.
Always start limits at (0,0) for consistency and easier snapping.
After setting limits, use ZOOM ALL to update your view.
Choose limits size appropriate to your project to avoid drawing issues.
Setting limits helps control grid display and zoom behavior in AutoCAD.