Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello to all:
I'm trying to filter line lengths and selections using LISP...I can't remember how to filter for the exact length of a line.
My code snippet:
((and (eq (vla-get-objectname b) "AcDbline")
(horiz-p b)
(equal (vla-get-length b) 6)
)
;; if the object is horizontal LINE and it is 6 inches long then do this
(addprop b "HILMOT-CONV-BLK-6 INCH HORIZONTAL LINES")
)
How is that line in red supposed to be formatted? Thanks in advance!
Solved! Go to Solution.