pycatia.manufacturing_interfaces.manufacturing_machinable_feature

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_machinable_feature.ManufacturingMachinableFeature(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
ManufacturingInterfaces.ManufacturingFeature
ManufacturingMachinableFeature

Machinable Feature in Manufacturing.
It is the base object for machinable geometry and machinable
area

See also:
ManufacturingMachinableArea, ManufacturingMachinableGeometry
property feat_remark: str

Note

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

Returns the manufacturing machinable feature remark.

Returns:
oFeatRemark The manufacturing machinable feature remark

Example:
The following example returns in tFeatRemark the remark of
manufacturing machinable feature firstMachFeat:

Dim firstMachFeat As ManufacturingMachinableFeature
Set firstMachFeat = …
Dim tFeatRemark As CATBSTR
Set tFeatRemark = firstMachFeat.FeatRemark
Return type:

str

property feat_type: str

Note

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

Returns the manufacturing machinable feature type.

Returns:
oFeatType The manufacturing machinable feature type
Example:
The following example returns in tFeatType the type of manufacturing
machinable feature firstMachFeat:

Dim firstMachFeat As ManufacturingMachinableFeature
Set firstMachFeat = …
Dim tFeatType As CATBSTR
Set tFeatType = firstMachFeat.FeatType
Return type:

str