Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NXOpen class override

Status
Not open for further replies.

dihen

Mechanical
May 28, 2013
19
0
0
DE
Hi All,

is it possible to inherit an NXOpen class and override some methods and use this new class in NX?
For example an NX feature can select only one object as target, and I want to make it possible to select multiple objects.

Yeah, I could use a selection method, collect everything in array and run the same journal 5 times, this is okay i already did many times, but i want to know if the override is possible :)

Thank you
 
Replies continue below

Recommended for you

The answer is in the reference guide, which describes all NX/Open types,properties, etc.

In most cases, the NX/Open classes are "sealed" (in .NET jargon) which means that you can not derive subclasses from them.

Many of the classes in the SNAP API are not sealed, but this will only help you if you're writing your code in a .NET language.
 
Status
Not open for further replies.
Back
Top