pycatia.analysis_interfaces.analysis_document

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.analysis_interfaces.analysis_document.AnalysisDocument(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
InfInterfaces.Document
AnalysisDocument

Represents the document object for analysis.
This objects is used for all CAE applications to defines specifications and
managed associated results.
The document for analysis data is typed as “.CATAnalysis”.
When an analysis document object is created, an analysis manager is also
created.
This analysis manager is the root object at the top of the structure of the
Analysis document.

See also:
Document
property analysis: AnalysisManager

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Analysis() As AnalysisManager (Read Only)

Returns the root analysis object from the current analysis
document.

Example:
The following example returns in RootAnalysis the root analysis object
of the active document, assumed to be an analysis
document:

Dim AnalysisDocument As Document
Set AnalysisDocument = CATIA.ActiveDocument
Dim RootAnalysis As AnalysisManager
Set RootAnalysis = AnalysisDocument.Analysis
Return type:

AnalysisManager