lpseifert Posted July 30, 2009 Posted July 30, 2009 maybe something like this? (setq obj (vlax-ename->vla-object (car (entsel))) var (vla-get-insertionpoint obj) sa (vlax-variant-value var) ip-lst (vlax-safearray->list sa) ) Quote
ollie Posted July 30, 2009 Author Posted July 30, 2009 maybe something like this? (setq obj (vlax-ename->vla-object (car (entsel))) var (vla-get-insertionpoint obj) sa (vlax-variant-value var) ip-lst (vlax-safearray->list sa) ) Thanks that is ideal. I tried this method earlier without the variant value and it didn't work 1 Quote
Lee Mac Posted July 30, 2009 Posted July 30, 2009 Another way: (vlax-get Obj 'InsertionPoint) 1 Quote
lpseifert Posted July 30, 2009 Posted July 30, 2009 Another way: (vlax-get Obj 'InsertionPoint) Hey! No fair using undocumented functions! Where do you find these? Quote
Lee Mac Posted July 30, 2009 Posted July 30, 2009 I don't know tbh, you just pick them up as you go - from other peoples code etc. Quote
lpseifert Posted July 30, 2009 Posted July 30, 2009 That's a good one... works for all available properties (from Dump)? Quote
Lee Mac Posted July 30, 2009 Posted July 30, 2009 That's a good one... works for all available properties (from Dump)? Yeah, just an alternative to the usual. I haven't had a problem with it yet, although there are bugs out there where some methods/properties respond to different functions in different ways. Lee Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.