pycatia.navigator_interfaces.dmu_review

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

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.navigator_interfaces.dmu_review.DMUReview(com_object)

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
DMUReview

Represents a DMU Review.
property activation: int

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property Activation() As long

Returns or sets the activation.

Returns:
The activation

0: the DMU Review is inactivated.
1: the DMU Review is activated.

Example:

This example retrieves the activation of the oDMUReview DMU Review
and activates it.


Activation = oDMUReview.Activation
oDMUReview.Activation = 1
Return type:

int

property dmu_reviews: DMUReviews

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384)
o Property DMUReviews() As DMUReviews (Read Only)

Returns the DMUReviews Collection associated with the DMUReview
(children).

Example:

This example retrieves the cDMUReviews collection
from the oDMUReview DMU Review.


Set cDMUReviews = oDMUReview.DMUReviews(9)
Return type:

DMUReviews