Author Topic: Variabele to control anno settings  (Read 1457 times)

0 Members and 1 Guest are viewing this topic.

lamarn

  • Swamp Rat
  • Posts: 636
Variabele to control anno settings
« on: July 14, 2010, 03:28:47 AM »
In the "style" dialog box there is a checkbox for annotative scaling.
If you set it on annotative the "textsize" variabele changes to "paper textsize".
What autocad / lisp variabele controls this on/off setting?

(I want to use this variable in my lisp code to control dimension and layer settings..)
Design is something you should do with both hands. My 2d hand , my 3d hand ..

Crank

  • Water Moccasin
  • Posts: 1503
Re: Variabele to control anno settings
« Reply #1 on: July 14, 2010, 01:21:13 PM »
As far as I know, there isn't a variable, but you can make the (dim)style annotative when you create it:
Code: [Select]
(command ".-style" "STANDARD" "ISOCP" "A" "y" "n" "" "1.0" "0.0" "N" "N")
Code: [Select]
(if (tblsearch "DIMSTYLE" name)
(command ".-dimstyle" "ANnotative" "yes" name "YES" "SAVE" name "YES")
(command ".-dimstyle" "ANnotative" "yes" name "SAVE" name "YES")
)
Vault Professional 2023     +     AEC Collection

lamarn

  • Swamp Rat
  • Posts: 636
Re: Variabele to control anno settings
« Reply #2 on: July 14, 2010, 04:07:53 PM »
..  I do not like the way Autodesk programms all anno thing very much yet.
can't get a grip on it....
Design is something you should do with both hands. My 2d hand , my 3d hand ..