I would like to identify fillets of a surface... Just stumbled across a function in CCV called "Search Fillets" which looks promising; Is this something that could be used in VBA?
Fillets are exposed as [tt]FaceFillet[/tt] and [tt]EdgeFillet[/tt] objects.
I suppose you can search for all fillets with [tt]Selection.Search[/tt] and then select those related to the surface.
thx, Little Cthulhu, but I have a datum surface, where I'd like to identify the fillets. The "Search Fillets" functionality of CCV organizes, and disassembles the fillet patches based on the fillet radius...
Ok, I see. I really doubt it can be done with Automation.
What you can do:
1. CATIA.StartCommand "Search Fillets"
2. Selection.Search "Name=<surface>,all" to provide running command with input feature
3. use WinAPI to find "OK" button and click it