Properties
- Property AnalysisImages() As (Read Only)
-
Returns the analysis images associated with this solution step.
- Returns:
- The collection of analysis images.
- Example:
-
The following example retrieves the analysis images
collection AnalysisImages in ListSolutionStepImages.
Dim MySolutionStep As ABQSolutionStep Dim ListSolutionStepImages As ABQSolutionStepImages Set ListSolutionStepImages = MySolutionStep.AnalysisImages
dd>
Methods
- Func CreateImage( iImageName, iHideExistingImages, iIncrOrModeNumber) As
-
Creates a new image under this solution step.
- Parameters:
-
- iImageName
- The name of the image to create. dd>
- iHideExistingImages
- To deactivate or not all the activated images before create the new image. dd>
- iIncrOrModeNumber
- Increment or mode (for frequency step) number to be set in created image. dd>
- Returns:
- The created Analysis Image dd>
- Example:
-
This example create ThisAnalysisImage in the MySolutionStep.
The image to create is supposed to be a mesh deformed image for first increment.
Dim MySolutionStep As ABQSolutionStep Dim ThisAnalysisImage As AnalysisImage Set ThisAnalysisImage = MySolutionStep.CreateImage("Mesh_Deformed", True, 1)
- Sub SetIncrementOrModeNumber( iIncrOrModeNumber, iImage)
-
Sets increment number for an image.
This is done related to an existing image- Parameters:
-
- iIncrOrModeNumber
- The increment or mode (for frequency step) number to select dd>