pycatia.manufacturing_interfaces.manufacturing_view

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.manufacturing_interfaces.manufacturing_view.ManufacturingView(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
ManufacturingView

The Manufacturing View is the object that holds all the manufacturing features
of the model.
create_all_machinable_area_features_from_tech_results_of_udf(i_finish_part_product: Product) None

Note

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

Creates Machinable feature using TR of UDF.

Example:
The following example takes iFinishPartProduct and Create MAF in
MfgView:

MfgView.CreateAllMachinableAreaFeaturesFromTechResultsOfUDF(iFinishPartProduct)
Parameters:

i_finish_part_product (Product) –

Return type:

None

property manufacturing_features: ManufacturingFeatures

Note

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

Returns the Manufacturing Features of a Manufacturing
View.

Example:
The following example returns in ManufacturingFeatures the
Manufacturing Features of the Manufacturing View
MfgView:

Set ManufacturingFeatures = MfgView.ManufacturingFeatures
Return type:

ManufacturingFeatures

property relations: Relations

Note

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

Returns the Relations Set owned by a Manufacturing View.

Example:
The following example returns in Relations the Relations Set of the
Manufacturing View MfgView:

Set Relations = MfgView.Relations
Return type:

Relations