0

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

Thanks, Danil.

1 Answers1

1

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.

Gabriel Cuvillier
  • 3,617
  • 1
  • 28
  • 35