CollaborativeDesignCollection Class

class NXOpen.CollaborativeDesignCollection

Bases: object

A collection of collaborative designs.

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

New 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.SubsetBuilder used to edit the current subset in the subset task environment

-------------------------------------

Getter Method

Signature CurrentSubsetBuilder

Returns:
Return type:NXOpen.Assemblies.SubsetBuilder

New in version NX8.5.0.

License requirements: assemblies (“ASSEMBLIES MODULE”)

Method Detail

Find

CollaborativeDesignCollection.Find

Finds the TaggedObject 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 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 TaggedObject to be found
Returns:Object found, or null if no such object exists
Return type:NXOpen.TaggedObject

New in version NX8.5.0.

License requirements: assemblies (“ASSEMBLIES MODULE”)

FindObject

CollaborativeDesignCollection.FindObject

Finds the CollaborativeDesign 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 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.CollaborativeDesign

New in version NX8.5.0.

License requirements: assemblies (“ASSEMBLIES MODULE”)