Message 1 of 22
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a lisp routine that will add VIF under my dimension. I would like to have it on a different layer. does anyone know how to do this? See lisp below.
;vif.lsp
;dim text replacement
;custom
(defun c:vif (/ ss)
(setq ss (ssget))
(command ".DIM" "NEW" "<>\\xvif" ss "" "EXIT")
Solved! Go to Solution.