pycatia.dnb_sim_activity_interfaces.delay_act

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.dnb_sim_activity_interfaces.delay_act.DelayAct(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
DMAPSInterfaces.Activity
DelayAct

Interface representing a DelayAct.

Role: This interface is used to retrieve/assign the value of motion
targets/attrs for the move home activity.
The following code snippet can be used to obtain a MoveHomeAct from a selected
Activity

Dim oSelectAct As Activity
Set oSelectAct = CATIA.ActiveDocument.Selection.FindObject(“CATIAActivity”)
Dim objMoveAct As DelayAct
Set objMoveAct = oSelectAct.GetTechnologicalObject(“DelayAct”)
property delay: float

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Delay() As double

This property returns and sets the delay value of the
activity.

Example:

Dim objDelayAct As DelayAct
…….
Dim delay as Double
delay=objDelayAct.Delay
delay = 30
objDelayAct.Delay=delay
Return type:

float