CATIA: How to call CATCoPlyExplodeCmd

589 Views Asked by At

Is it possible to call from C++ catia command? How can I get any info about signature for this command?

Thanks, Danil.

1

There are 1 best solutions below

0
On BEST ANSWER

Yes it should be possible from C++ with the CAA API and environment installed:

CATCommand* pCmd = NULL;
hr = ::CATAfrStartCommand("CATCoPlyExplodeCmd", pCmd);

I don't know if that command takes any arguments though.