Custom Objects - Access Type & Properties From .NET?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As of AutoCAD 2010 (or later only?), if I have a custom object defined by a loaded DBX (so not a proxy), it is described as being of type _ComObject. I understand why, but I wonder, is it possible yet to be able to access its true type (e.g. MyCustomObjectType) and read / write its [custom] properties and / or call its custom methods from .NET? I suspect that even if the methods were available in the COM wrapper class (the same one used to produce the entries in the Property Inspector for the object) it still might not be possible. I found some old articles but they were no later than 2009 and only talked about Overrules (if that's the right term) - but I don't just want to override certain behaviour. I would like to be able to create and manipulate custom objects as if they were built-in objects - so the DBX defines what they are and what they do, and the .NET side actually does the work by setting properties or calling methods - just like it would for a standard object.
Possible? Dreaming?