CollaborativeDesignCollection Class¶
-
class
NXOpen.CollaborativeDesignCollection¶ Bases:
objectA collection of collaborative designs.
To obtain an instance of this class, refer to
NXOpen.CollaborativeContentManagerNew in version NX8.5.0.
Properties¶
| Property | Description |
|---|---|
| CurrentSubsetBuilder | Returns the NXOpen.Assemblies.SubsetBuilder used to edit the current subset in the subset task environment |
Methods¶
| Method | Description |
|---|---|
| Find | Finds the TaggedObject with the given identifier as recorded in a journal. |
| FindObject | Finds the CollaborativeDesign with the given identifier as recorded in a journal. |
Property Detail¶
CurrentSubsetBuilder¶
-
CollaborativeDesignCollection.CurrentSubsetBuilder¶ Returns the
NXOpen.Assemblies.SubsetBuilderused to edit the current subset in the subset task environment-------------------------------------Getter Method
Signature
CurrentSubsetBuilderReturns: Return type: NXOpen.Assemblies.SubsetBuilderNew in version NX8.5.0.
License requirements: assemblies (“ASSEMBLIES MODULE”)
Method Detail¶
Find¶
-
CollaborativeDesignCollection.Find¶ Finds the
TaggedObjectwith 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 Find 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
Find(journalIdentifier)Parameters: journalIdentifier (str) – Identifier of the TaggedObjectto be foundReturns: Object found, or null if no such object exists Return type: NXOpen.TaggedObjectNew in version NX8.5.0.
License requirements: assemblies (“ASSEMBLIES MODULE”)
FindObject¶
-
CollaborativeDesignCollection.FindObject¶ Finds the
CollaborativeDesignwith 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
FindObject(journalIdentifier)Parameters: journalIdentifier (str) – Name of the collaborative design to be found Returns: Collaborative design found, or null if no such collaborative design exists. Return type: NXOpen.CollaborativeDesignNew in version NX8.5.0.
License requirements: assemblies (“ASSEMBLIES MODULE”)