Auto change the linetype scale setting of a layer

  • Thread starter Thread starter cadbaby
  • Start date Start date
C

cadbaby

Without using the qselect/property menu, is there a way whereby searching the entire drawing automatically without manual select it(let say layername ="anchor") and automatically change the linetype scale =300 ? I need to include that little macro in a partial menu when user just push the button on it .

Thanks
 
Without using the qselect/property menu, is there a way whereby searching the entire drawing automatically without
manual select it(let say layername ="anchor") and automatically change the linetype scale =300 ? I need to include that
little macro in a partial menu when user just push the button on it . <p>Thanks


(command "._change" (ssget "X" '((8 . "ANCHOR"))) "" "_P" "_S" "300" "")
 
Back
Top