Message 1 of 26

Not applicable
02-11-2021
11:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
(defun C:H-C ()
(Setq a (ssget "X" '((8 . "Test1"))))(command "-hatchedit" a "p" "ANSI31" "1" "0")
(Setq a (ssget "X" '((8 . "test2"))))(command "-hatchedit" a "p" "SOLID" "1" "0")
(Setq a (ssget "X" '((8 . "Test3"))))(command "-hatchedit" a "p" "ANSI33" "1" "0")
(Setq a (ssget "X" '((8 . "test4"))))(command "-hatchedit" a "p" "DASH" "1" "0")
(Setq a (ssget "X" '((8 . "Test5"))))(command "-hatchedit" a "p" "ANSI33" "1" "0")
(Setq a (ssget "X" '((8 . "test6"))))(command "-hatchedit" a "p" "ANSI31" "1" "0")
)
If I have a lot of objects on the layer it doesn't work, where is the mistake?
Solved! Go to Solution.