PDA

View Full Version : Update Style Table


jmcshane
2007-03-06, 12:33 PM
Hi all,

As part of a routine, I am trying to change all the text in a drawing which is using the standard text style of Arial to romans.shx.
I figured this could be done by changing the Style Table like so


(subst
(cons
(car
(setq a3 (assoc 3 (setq txts (tblsearch "STYLE" "Standard"))))
) "romans.shx") a3 txts)


The trouble is I don't know how to reflect this change on screen.

Is it possible to do this or is there an easier way ??

Thanks in advance

John

abdulhuck
2007-03-06, 01:30 PM
Hi all,

As part of a routine, I am trying to change all the text in a drawing which is using the standard text style of Arial to romans.shx.
John,

Have a look at this thread.

http://forums.augi.com/showthread.php?t=43262 (http://forums.augi.com/showthread.php?t=43262)

Regards,

Abdul Huck

jmcshane
2007-03-06, 02:10 PM
Simple as that................

Thanks Abdul Huck, and RKMcSwain.


John