Author Topic: AutoLISP nentset equivalent in C#  (Read 2648 times)

0 Members and 1 Guest are viewing this topic.

dugk

  • Guest
AutoLISP nentset equivalent in C#
« on: January 13, 2010, 09:52:55 AM »
Is there an equivalent to the AutoLISP nentset in C#?

the Help file definition for nentset:
Prompts the user to select an object (entity) by specifying a point, and provides access to the definition data contained within a complex object

thanks!

fixo

  • Guest
Re: AutoLISP nentset equivalent in C#
« Reply #1 on: January 13, 2010, 10:37:42 AM »

Try GetNestedEntity
Code: [Select]
Editor ed =doc.Editor;
ed.GetNestedEntiy(...);

~'J'~

SteveK

  • Guest
Re: AutoLISP nentset equivalent in C#
« Reply #2 on: January 13, 2010, 05:29:43 PM »
I like the question, can I ask more; Is there a reference out there that has C# equivalents? Because I would love to use what I know from autolisp as a stepping stone to AutoCAD C#.

fixo

  • Guest
Re: AutoLISP nentset equivalent in C#
« Reply #3 on: January 14, 2010, 04:11:33 AM »
I like the question, can I ask more; Is there a reference out there that has C# equivalents? Because I would love to use what I know from autolisp as a stepping stone to AutoCAD C#.

I don't know such documentation, sorry

~'J'~

SteveK

  • Guest
Re: AutoLISP nentset equivalent in C#
« Reply #4 on: January 14, 2010, 04:01:05 PM »
No, it was probably a bit far fetched, what with classes, pointers etc..

fixo

  • Guest
Re: AutoLISP nentset equivalent in C#
« Reply #5 on: January 15, 2010, 04:38:27 AM »