Save Stp to Stl

Hello,
I want to save .STP file into .STL file using Rhino script without any enter key stroke

Here I have written code for saving stp file without any key stroke
FileStpWriteOptions f = new FileStpWriteOptions();
FileStp.Write(filepath, activeDoc, f);

How can I save file in Stl without any key stroke?
Regards,
Bhavita

Hi @Bhavita_Patil,

The Rhino 8 WIP has a new FileStl class.

– Dale