Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/07/2020 in all areas

  1. Similar to what fixo had, thru the block definition. (defun getAttdefData ( bn / ent enx lst ) (if (setq ent (tblobjname "block" bn)) (while (setq ent (entnext ent)) (if (= "ATTDEF" (cdr (assoc 0 (setq enx (entget ent))))) (setq lst (cons (mapcar '(lambda (n)(cdr (assoc n enx))) '(2 1));<-- add more att prop here TEXTSTYLE HEIGHT etc. lst ) ) ) ) ) lst ) This is way faster than VL. I have not personally met Fixo, our correspondents was limited to emails, asking me from time to time to test a code he's woking on, eventually the messages became more about life and christimas greeting and the like. For the longest time he was egging me to learn .NET and was even kind enough to share his code snippets thru Dropbox. I miss his enthusiasm most of all. The man is truly a legend. pBe
    1 point
  2. I never used R13 or R14. I jumped from R12 to 2000, so I don't know about advantages of 2000 over R14, but here's an article that talks about some of the new features that were added in the 2000 release. https://fcw.com/articles/1999/05/09/featurerich-autocad-2000-debuts.aspx
    1 point
×
×
  • Create New...