ToolingCollection Class

class NXOpen.Features.ToolingCollection

Bases: object

This class contains the factory method for creating tooling feature builder.

To obtain an instance of this class, refer to NXOpen.Features.FeatureCollection

New in version NX8.5.0.

Methods

Method Description
CreatePrebendBuilder Creates a NXOpen.Tooling.PrebendBuilder
CreateUniversalUnformBuilder Creates a NXOpen.Tooling.UniversalUnformBuilder
ToolingFindObject Finds the NXOpen.Features with the given identifier as recorded in a journal.

Method Detail

CreatePrebendBuilder

ToolingCollection.CreatePrebendBuilder

Creates a NXOpen.Tooling.PrebendBuilder

Signature CreatePrebendBuilder(prebend)

Parameters:prebend (NXOpen.Features.Prebend) – NXOpen.Features.Prebend to be edited
Returns:PrebendBuilder object
Return type:NXOpen.Tooling.PrebendBuilder

New in version NX10.0.0.

License requirements: prog_die_wizard (“UG/Progressive Die Wizard”)

CreateUniversalUnformBuilder

ToolingCollection.CreateUniversalUnformBuilder

Creates a NXOpen.Tooling.UniversalUnformBuilder

Signature CreateUniversalUnformBuilder(universalUnform)

Parameters:universalUnform (NXOpen.Features.UniversalUnform) – NXOpen.Features.UniversalUnform to be edited
Returns:UniversalUnformBuilder object
Return type:NXOpen.Tooling.UniversalUnformBuilder

New in version NX8.5.0.

License requirements: prog_die_wizard (“UG/Progressive Die Wizard”)

ToolingFindObject

ToolingCollection.ToolingFindObject

Finds the NXOpen.Features with the given identifier as recorded in a journal.

An object may not return the same value as its JournalIdentifier in different versions of the software. However newer versions of the software should find the same object when FindObject is passed older versions of its journal identifier. In general, this method should not be used in handwritten code and exists to support record and playback of journals.

An exception will be thrown if no object can be found with the given journal identifier.

Signature ToolingFindObject(journalIdentifier)

Parameters:journalIdentifier (str) – Identifier to be found
Returns:Feature with this identifier
Return type:NXOpen.Features.Feature

New in version NX8.5.0.

License requirements: None.