Message 1 of 12

Not applicable
02-13-2019
10:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to create a small lisp routine to change the "Dim Line Lineweight" property of a group of Leaders on a drawing. The setting is located under properties in the Lines & Arrows section. I have the code I need to highlight all the leaders on a specific layer, but I cannot find the right code to change the line weight. Below is what I have so far. Thanks!
(defun c:Leader (/ ss)
(sssetfirst nil (ssget "_x" '((0 . "Leader")(8 . "TF_S_WELD SYMBOL"))))
(princ)
)
Solved! Go to Solution.