Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Hi, here code to export to STEP



sub main()

path_and_name = ThisDoc.PathAndFileName(False) ' without extension

oDataMedium = ThisApplication.TransientObjects.CreateDataMedium

'Set the destination file name
oDataMedium.FileName = path_and_name & ".stp"

'Publish document.
ThisDoc.Document.SaveAs(oDataMedium.FileName , True)

end sub