Hatch filter
I have a pdf to dwg convertor ehich works very well, but I am having trouble deleting the solid hatch fills it creates. Is there a way in Bricscad that allows you to filter the solid hatch pattern. AutoCAD has hatch style in the dropdown list in the properties filter dialogue, but I can't see a similar option on BricsCAD.
Many thanks
Richard
0
Comments
-
You can use QuickSelect: filter out all Hatches first, then restart QuickSelect and check the 'Apply to current selection set' option and choose 'Solid' in the 'Pattern Name' field.0
-
I use this:
[code](defun c:delhatch (/ b oldpick)
(setq oldpick (getvar "pickstyle"))
(setvar "pickstyle" 0)
(setq b (ssget '((0 . "hatch"))))
(command "._erase" b "")
(setvar "pickstyle" oldpick)
)
[/code]0
This discussion has been closed.