Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-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
Joined
May 28, 2013
Messages
19
Location
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
 
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.

Part and Inventory Search

Sponsor

Back
Top