pycatia.analysis_interfaces.analysis_sensor

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_sensor.AnalysisSensor(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
CATAnalysisInterfaces.AnalysisEntity
AnalysisSensor

Represent the analysis sensor.
property out_put_parameters: Parameters

Note

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

Returns the collection object containing the sensor
parameters.

Example:
The following example returns in params the parameters computed by the
sensor:

Dim AnalysisSensor1 As AnalysisSensor
Dim params As CATIAParameters
Set params = AnalysisSensor1.OutPutParameters
Return type:

Parameters

update() None

Note

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

Update the sensor. Computation of OutPutParameters if
needed.

Example:
The following example computes the sensor:

Dim AnalysisSensor1 As AnalysisSensor
AnalysisSensor1.Update
Return type:

None