NXOpen .NET Reference Guide  1899
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties
Public Member Functions | Properties | List of all members
NXOpen.CAE.PostScenarioBuilderSlot Class Reference

This class represents a NXOpen.CAE.PostScenarioBuilderSlot . More...

Inheritance diagram for NXOpen.CAE.PostScenarioBuilderSlot:
NXOpen.Builder NXOpen.TaggedObject NXOpen.GeometricUtilities.IComponentBuilder NXOpen.Utilities.NXRemotableObject IMessageSink

Public Member Functions

unsafe NXOpen.CAE.DataSource[] GetAvailableDataSources ()
 List CAE.DataSource applicable to the current slot. More...
 
unsafe
NXOpen.CAE.PostScenarioDefinition[] 
GetAvailableDefinitionsForDataSource (NXOpen.CAE.DataSource dataSource)
 List NXOpen.CAE.PostScenarioDefinition applicable to the current slot for a particular CAE.DataSource . More...
 
unsafe
NXOpen.CAE.PostScenarioDefinition[] 
GetDefinitions ()
 Returns the selected CAE.PostScenarioDefinition More...
 
unsafe void SetDataSource (NXOpen.CAE.DataSource dataSource, NXOpen.CAE.PostScenarioDefinition dataDefinition)
 Assign data to this slot. More...
 
unsafe void SetDataSource (NXOpen.CAE.DataSource dataSource, NXOpen.CAE.PostScenarioDefinition[] dataDefinitions)
 Assign data to this slot. More...
 
- Public Member Functions inherited from NXOpen.Builder
unsafe NXOpen.NXObject Commit ()
 Commits any edits that have been applied to the builder. More...
 
unsafe void Destroy ()
 Deletes the builder, and cleans up any objects created by the builder. More...
 
unsafe NXOpen.NXObject[] GetCommittedObjects ()
 For builders that create more than one object, this method returns the objects that are created by commit. More...
 
unsafe NXOpen.NXObject GetObject ()
 Returns the object currently being edited by this builder. More...
 
unsafe void ShowResults ()
 Updates the model to reflect the result of an edit to the model for all builders that support showing results. More...
 
unsafe bool Validate ()
 Validate whether the inputs to the component are sufficient for commit to be called. More...
 
- Public Member Functions inherited from NXOpen.TaggedObject
void PrintTestData (String variableName)
 <exclude> More...
 
void PrintTestData (String variableName, int lineNumber)
 <exclude> More...
 
override string ToString ()
 Returns a String that represents the current Object. More...
 
- Public Member Functions inherited from NXOpen.Utilities.NXRemotableObject
IMessageCtrl AsyncProcessMessage (IMessage msg, IMessageSink replySink)
 Asynchronously processes the given message. More...
 
IMessage SyncProcessMessage (IMessage msg)
 Synchronously processes the given message. More...
 

Properties

unsafe NXOpen.CAE.DataSource DataSource [get]
 Returns the selected CAE.DataSource More...
 
unsafe string Name [get]
 Returns the name of the input definition slot. More...
 
- Properties inherited from NXOpen.Builder
unsafe NXOpen.PreviewBuilder PreviewBuilder [get]
 Returns the preview builder subobject. More...
 
- Properties inherited from NXOpen.TaggedObject
Tag Tag [get]
 Returns the tag of this object. More...
 
- Properties inherited from NXOpen.Utilities.NXRemotableObject
IMessageSink NextSink [get]
 Gets the next message sink in the sink chain. More...
 

Additional Inherited Members

- Protected Member Functions inherited from NXOpen.TaggedObject
new void initialize ()
 <exclude> More...
 

Detailed Description

This class represents a NXOpen.CAE.PostScenarioBuilderSlot .

A NXOpen.CAE.PostScenarioBuilder can contain multiple slots to which NXOpen.CAE.DataSource s and respective NXOpen.CAE.PostScenarioDefinition s are assigned. The scenario retrieves data from these data sources in order to process it and display it via NXOpen.CAE.PostScenarioBuilder.Visualization .

No support for KF.

Created in NX12.0.0

Member Function Documentation

unsafe NXOpen.CAE.DataSource [] NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources ( )
inline

List CAE.DataSource applicable to the current slot.

Data Sources are retrieved from NXOpen.CAE.PostScenarioManager.DataSources and filtered to only contain data applicable to the current scenario slot.

Created in NX12.0.0

License requirements: None.

Returns
unsafe NXOpen.CAE.PostScenarioDefinition [] NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDefinitionsForDataSource ( NXOpen.CAE.DataSource  dataSource)
inline

List NXOpen.CAE.PostScenarioDefinition applicable to the current slot for a particular CAE.DataSource .

This is a utility method. The

dataSource

parameter should have been retrieved via NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources .

Created in NX12.0.0

License requirements: None.

Parameters
dataSource
Returns
unsafe NXOpen.CAE.PostScenarioDefinition [] NXOpen.CAE.PostScenarioBuilderSlot.GetDefinitions ( )
inline

Returns the selected CAE.PostScenarioDefinition

Created in NX12.0.0

License requirements: None.

Returns
unsafe void NXOpen.CAE.PostScenarioBuilderSlot.SetDataSource ( NXOpen.CAE.DataSource  dataSource,
NXOpen.CAE.PostScenarioDefinition  dataDefinition 
)
inline

Assign data to this slot.

This assignment applies to the owning NXOpen.CAE.PostScenarioBuilder . The NXOpen.CAE.DataSource and NXOpen.CAE.PostScenarioDataDefinition have to be consistent and relevant to this scenario. See NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources and NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDefinitionsForDataSource . This overload should be used for data assignments.

Created in NX12.0.0

License requirements: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

Parameters
dataSourceshould be retrieved through NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources .
dataDefinitionShould be retrieved by calling NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDefinitionsForDataSource with the
dataSource
parameter.
unsafe void NXOpen.CAE.PostScenarioBuilderSlot.SetDataSource ( NXOpen.CAE.DataSource  dataSource,
NXOpen.CAE.PostScenarioDefinition[]  dataDefinitions 
)
inline

Assign data to this slot.

This assignment applies to the owning NXOpen.CAE.PostScenarioBuilder . The NXOpen.CAE.DataSource and NXOpen.CAE.PostScenarioDefinition have to be consistent and relevant to this scenario. See NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources and NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDefinitionsForDataSource . This overload should be used for FE Model assignments.

Created in NX12.0.0

License requirements: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

Parameters
dataSourceshould be retrieved through NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDataSources .
dataDefinitionsShould be retrieved by calling NXOpen.CAE.PostScenarioBuilderSlot.GetAvailableDefinitionsForDataSource with the
dataSource
parameter.

Property Documentation

unsafe NXOpen.CAE.DataSource NXOpen.CAE.PostScenarioBuilderSlot.DataSource
get

Returns the selected CAE.DataSource

Created in NX12.0.0

License requirements: None.

unsafe string NXOpen.CAE.PostScenarioBuilderSlot.Name
get

Returns the name of the input definition slot.

Created in NX12.0.0

License requirements: None.


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