Message 1 of 12
Macro to change all point groups in drawing pointstyle and pointlabelstyle to none
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi trying to write a macro to change all point groups pointstyle and pointlabelstyle to none in my current drawing.
Here is what I have so far.
^c^c(if(setq ss(ssget "x" (list(cons 0 'PointGroups)))) (PROGN (REPEAT (SETQ I (SSLENGTH SS)) (SETQ OBJ (VLAX-ENAME->vla-object (ssname ss (setq i (1- i)))))(vlax-put-styl obj 'PointStyles "<none>"))))
Any ideas?