'distinguish between bodies in Catia
Solution 1:[1]
Therefor you can read (with undocumented methods) the internal name of a feature/object (which can not be changed):
Dim oModelElement As Object
Dim sInternalName As String
Set oModelElement = oBody.GetItem("ModelElement")
sInternalName = oModelElement.InternalName
MsgBox sInternalName
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Shrotter |