I want to display the parameters that depend on the design table. I prepared a code but I can't display some parameters. You can view the attachments.
Is there a way to view them? Thanks for support
I can get the following information about Constraint.
Its value displayed in 'refEleman1.DisplayName'
Is there a way to show it as marked?
(i need this to get list of all constraint in 3d model)
I have problem with finding update status in Catia V5. I cant find if the product needs update. How can i find product update status?
Here you can find how i find part update needs.
For Each dokumanlar In CATIA.Documents
If TypeName(dokumanlar) = "PartDocument" Then
If...
I have a problem. I can import feature types in catia vba with the following codes
Set document1 = CATIA.Documents.Item("Product1.CATProduct")
Set products1 = document1.Product.Products
For i = 1 To products1.Count
MsgBox TypeName(products1.Item(i).ReferenceProduct.Parent)
Next i
but...