- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So, I have a button to set up my text styles in case they get purged from a drawing. See below...
;; Load all Core Fonts
;;
(defun c:corefonts ()
(setq expert (getvar "expert")) (setvar "expert" 5)
; (command "-style" "H" "hlvm.shx" "0" "1" "0" "no" "no")
(command "-style" "Symbol" "symap.shx" "0" "1" "0" "no" "no" "no")
; (command "-style" "R-Oblique" "RomanS" "0" "1" "15" "" "" "")
(command "-style" "Street Names" "Calibri.TTF" "0" "1" "0" "no" "no")
; (command "-style" "R" "RomanS" "0" "0.8" "0" "no" "no" "no")
; (command "-style" "Annotative" "Calibri.TTF" "Annotative" "yes" "no" "0.1" "1" "0" "no" "no" "no")
; (command "-style" "Arial" "Calibri.TTF" "0" "1" "0" "" "" "")
(command "-style" "CORE-OBLIQUE" "Calibri.TTF" "0" "1" "15" "" "" "")
(command "-style" "CORE-STANDARD" "Calibri.TTF" "0" "1" "0" "" "" "")
(setvar "expert" expert)
(command "regenall")
)
I want to do the same with my dimension styles. Would I use the same format, but with -dimstyle?
Civil Administration at Walter P Moore
Solved! Go to Solution.