Over 1.106.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and sys.variables and env.variables,.
CAD tip # 10269:
Question
A
You can use the AutoCAD command HATCHGENERATEBOUNDARY to batch-edit multiple hatches and restore their (previously deleted) boundary curves in one go. This command is available since version 2011.
For older versions or possible customizations of the boundary-restore procedure you can also use the following LISP utility defining the new custom command HGB (save it as .LSP):
;like HATCHGENERATEBOUNDARY (<2011) (defun C:HGB ( / ss len n ename oosm ocmd) (setq ss (ssget '((0 . "HATCH")))) (setq len (sslength ss) n 0) (setq oosm (getvar "osmode") ocmd getvar "cmdecho")) (setvar "osmode" 0) (setvar "cmdecho" 0) (while (< n len) (setq ename (ssname ss n)) (command "_HATCHEDIT" ename "_B" "" "_Y") (setq n (1+ n)) ) (setvar "osmode" oosm) (setvar "cmdecho" ocmd) (sssetfirst ss ss) (princ) ); end HGB
ACAD
2.4.2015
12713×
this tip shared by ARKANCE experts applies to: AutoCAD ·
![CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

