NXOpen .NET Reference  12.0.0
Public Member Functions | Protected Member Functions | List of all members
NXOpen.Assemblies.WaveQuery Class Reference

Provides information about the inter-part relations (e.g. More...

Inheritance diagram for NXOpen.Assemblies.WaveQuery:

Public Member Functions

unsafe void GetPartPreview (string partSpec, int partIdentifier, out int height, out int width, out int[] pixels)
 Gets the part's preview image. More...
 
unsafe string GetInSessionPartsXml (bool includeOnlyWithLinks)
 Gets the parts that are in-session. More...
 
unsafe string GetPartsInContextAssemblyXml (bool includeOnlyWithLinks)
 Gets the parts that are in the context assembly. More...
 
unsafe string GetAllSelectedPartsXml (bool includeOnlyWithLinks)
 Gets all the parts in the current selection list in the NX session. More...
 
unsafe string GetWorkPartWithPartRelationsXml ()
 Gets the current work part. More...
 
unsafe string GetChildPartRelationsXml (string parentPartSpec, int parentPartIdentifier, bool walkAll)
 Gets the child parts for a given part. More...
 
unsafe string GetParentPartRelationsXml (string childPartSpec, int childPartIdentifier, bool walkAll)
 Gets the parent parts for a given part. More...
 
unsafe string GetProductInterfacesXml (string partSpec, int partIdentifier)
 Gets the product interfaces and their references for a given part. More...
 
unsafe string GetInterPartLinksXml (string partSpec, int partIdentifier)
 Gets the inter-part links and their sources for a given part. More...
 
unsafe string GetReferencesToProductInterfaceXml (string owningPartSpec, int owningPartIdentifier, string prodintHandle, int prodintIdentifier)
 Gets a product interface's referencing objects. More...
 
unsafe int HandleApplicationEvents (NXOpen.Assemblies.AssembliesEventTypes eventType, string eventDescription, string[] entitySpecs, int[] entityIdentifiers)
 Provides application (e. More...
 
unsafe string GetPartFeatureDependenciesXml (string partSpec, int partIdentifier)
 Gets the feature dependency lists for a fully loaded part. More...
 
unsafe bool AreAssemblyConstraintsDelayed ()
 Returns true if update of assembly constraints is delayed More...
 
unsafe string GetSpecifiedPartRelationsXml (string[] partSpecs, int[] partIdentifiers, bool includeOnlyWithLinks)
 Gets information about the specified parts. More...
 
unsafe void SetChildRevisionOption (NXOpen.Assemblies.AssembliesChildRevisionOptions optionType)
 Specifies what child revisions to fetch from Teamcenter More...
 
unsafe
NXOpen.Assemblies.AssembliesChildRevisionOptions 
GetChildRevisionOption ()
 Returns the child revision option More...
 

Protected Member Functions

override void FreeResource ()
 Free resources associated with the instance. More...
 

Detailed Description

Provides information about the inter-part relations (e.g.

WAVE, inter-part expressions) in a NX model.

The returned XML string contains information from parts loaded in the NX session and from published TeamCenter data. The XML must be unmarshaled using the Browser_model_schema.xsd.The XML identifiers are valid for the life of the session and are used in sequent queries.

For the selected parts, the queries return the first level parent (source) and child (target) parts. The object-object relations that comprise a part-part relation are included if the information is available. Each query provides a context for the meaning of a selected part. For example, the work part is the only selected part for GetWorkPartWithPartRelationsXml. However, the method GetPartsInContextAssemblyXml considers all the unique parts in the context assembly to be selected.

Since the queries also return the first level parent and child parents, these non-selected parts could exist only in TeamCenter.

This is an abstract class, and cannot be created.

Created in NX6.0.0

Member Function Documentation

unsafe bool NXOpen.Assemblies.WaveQuery.AreAssemblyConstraintsDelayed ( )

Returns true if update of assembly constraints is delayed

Created in NX7.5.0

License requirements: wave ("WAVE FUNCTIONALITY")

Returns
whether constraints are delayed
override void NXOpen.Assemblies.WaveQuery.FreeResource ( )
protected

Free resources associated with the instance.

After this method is called, it is illegal to use the object. In .NET, this method is automatically called when the object is deleted by the garbage collector.

Created in NX6.0.0

License requirements: None.

unsafe string NXOpen.Assemblies.WaveQuery.GetAllSelectedPartsXml ( bool  includeOnlyWithLinks)

Gets all the parts in the current selection list in the NX session.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
includeOnlyWithLinkstrue if only parts that own inter-part links are returned
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetChildPartRelationsXml ( string  parentPartSpec,
int  parentPartIdentifier,
bool  walkAll 
)

Gets the child parts for a given part.

The parts are not necessarily fully loaded. The specified part and its children are considered to be "selected" parts.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
parentPartSpecthe part's specification
parentPartIdentifierpart's in-session identifier
walkAlltrue if children of all descendants are obtained
Returns
the XML
unsafe NXOpen.Assemblies.AssembliesChildRevisionOptions NXOpen.Assemblies.WaveQuery.GetChildRevisionOption ( )

Returns the child revision option

Created in NX8.5.0

License requirements: wave ("WAVE FUNCTIONALITY")

Returns
the child revision option that is currently set
unsafe string NXOpen.Assemblies.WaveQuery.GetInSessionPartsXml ( bool  includeOnlyWithLinks)

Gets the parts that are in-session.

The parts are not necessarily fully loaded.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
includeOnlyWithLinkstrue if only parts that own inter-part links are returned
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetInterPartLinksXml ( string  partSpec,
int  partIdentifier 
)

Gets the inter-part links and their sources for a given part.

The owning part is the "selected" part.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
partSpecthe part's specification
partIdentifierpart's in-session identifier
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetParentPartRelationsXml ( string  childPartSpec,
int  childPartIdentifier,
bool  walkAll 
)

Gets the parent parts for a given part.

The parts are not necessarily fully loaded. The specified part and its parents are considered to be "selected" parts.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
childPartSpecthe part's specification
childPartIdentifierpart's in-session identifier
walkAlltrue if parents of all ancestors are obtained
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetPartFeatureDependenciesXml ( string  partSpec,
int  partIdentifier 
)

Gets the feature dependency lists for a fully loaded part.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
partSpecthe part's specification
partIdentifierpart's in-session identifier
Returns
the XML
unsafe void NXOpen.Assemblies.WaveQuery.GetPartPreview ( string  partSpec,
int  partIdentifier,
out int  height,
out int  width,
out int[]  pixels 
)

Gets the part's preview image.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
partSpecthe part's specification
partIdentifierpart's in-session identifier
heightheight of preview image
widthwidth of preview image
pixelsthe pixels
unsafe string NXOpen.Assemblies.WaveQuery.GetPartsInContextAssemblyXml ( bool  includeOnlyWithLinks)

Gets the parts that are in the context assembly.

The parts are not necessarily fully loaded.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
includeOnlyWithLinkstrue if only parts that own inter-part links are returned
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetProductInterfacesXml ( string  partSpec,
int  partIdentifier 
)

Gets the product interfaces and their references for a given part.

The owning part is the "selected" part.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
partSpecthe part's specification
partIdentifierpart's in-session identifier
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetReferencesToProductInterfaceXml ( string  owningPartSpec,
int  owningPartIdentifier,
string  prodintHandle,
int  prodintIdentifier 
)

Gets a product interface's referencing objects.

The owning part is the "selected" part.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
owningPartSpecthe owning part's specification
owningPartIdentifierowning part's in-session identifier
prodintHandlethe product interface's handle
prodintIdentifierproduct interface's in-session identifier
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetSpecifiedPartRelationsXml ( string[]  partSpecs,
int[]  partIdentifiers,
bool  includeOnlyWithLinks 
)

Gets information about the specified parts.

The parts are not necessarily fully loaded.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
partSpecsthe NX part specifications
partIdentifiersthe NX part identifiers
includeOnlyWithLinkstrue if only parts that own inter-part links are returned
Returns
the XML
unsafe string NXOpen.Assemblies.WaveQuery.GetWorkPartWithPartRelationsXml ( )

Gets the current work part.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Returns
the XML
unsafe int NXOpen.Assemblies.WaveQuery.HandleApplicationEvents ( NXOpen.Assemblies.AssembliesEventTypes  eventType,
string  eventDescription,
string[]  entitySpecs,
int[]  entityIdentifiers 
)

Provides application (e.

g. the graphical browser) event processing by NX. Some events refer to part level actions while others refer to part object level actions.

Created in NX6.0.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
eventTypetype of event for processing
eventDescriptiontextual description of the event for reporting
entitySpecsthe NX part specifications or the handles of the objects
entityIdentifiersthe NX part or object identifiers
Returns
the return status of this method
unsafe void NXOpen.Assemblies.WaveQuery.SetChildRevisionOption ( NXOpen.Assemblies.AssembliesChildRevisionOptions  optionType)

Specifies what child revisions to fetch from Teamcenter

Created in NX8.5.0

License requirements: wave ("WAVE FUNCTIONALITY")

Parameters
optionTypewhat child revisions to fetch from Teamcenter

The documentation for this class was generated from the following file:
Copyright 2017 Siemens Product Lifecycle Management Software Inc. All Rights Reserved.