ToolingCollection Class¶
-
class
NXOpen.Features.ToolingCollection¶ Bases:
objectThis class contains the factory method for creating tooling feature builder.
To obtain an instance of this class, refer to
NXOpen.Features.FeatureCollectionNew 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.PrebendBuilderSignature
CreatePrebendBuilder(prebend)Parameters: prebend ( NXOpen.Features.Prebend) –NXOpen.Features.Prebendto be editedReturns: PrebendBuilder object Return type: NXOpen.Tooling.PrebendBuilderNew in version NX10.0.0.
License requirements: prog_die_wizard (“UG/Progressive Die Wizard”)
CreateUniversalUnformBuilder¶
-
ToolingCollection.CreateUniversalUnformBuilder¶ Creates a
NXOpen.Tooling.UniversalUnformBuilderSignature
CreateUniversalUnformBuilder(universalUnform)Parameters: universalUnform ( NXOpen.Features.UniversalUnform) –NXOpen.Features.UniversalUnformto be editedReturns: UniversalUnformBuilder object Return type: NXOpen.Tooling.UniversalUnformBuilderNew in version NX8.5.0.
License requirements: prog_die_wizard (“UG/Progressive Die Wizard”)
ToolingFindObject¶
-
ToolingCollection.ToolingFindObject¶ Finds the
NXOpen.Featureswith 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.FeatureNew in version NX8.5.0.
License requirements: None.