CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 7618

CAD tip CAD tip # 10269:

   
Question CAD 
 %  platform  category 
Q - question

How to restore erased hatch boundaries? (multiple)

A - answer 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
100% *  CAD 
2.4.2015    11030×  
Prices - CAD eShop:
applies to: AutoCAD ·

See also:
Tip 13590:How to set the hatch background color?
Tip 13150:How to hatch selected objects including overlays and islands?
Tip 12966:TrimArr - trim a dynamic array to a boundary curve.
Tip 12766:Lines with a single grip, incorrect osnaps, intersections, offsets, hatches - CheckLarge
Tip 12287:AutoCAD hatch flood-fill does not honor all boundaries.


Back   All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Increase your productivity with our set of BIM add-on functions for Autodesk Revit
CADstudio Revit Tools More info


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist