Defines that an SMT export is to be done and specifies the various options.
| Name | Description |
| classType |
Static function that all classes support that returns the type of the class as a string. The returned string matches the string returned by the objectType property. For example if you have a reference to an object and you want to check if it's a SketchLine you can use myObject.objectType == fusion.SketchLine.classType(). |
| Name | Description |
| filename | Gets and sets the filename that the exported file will be written to. This can be empty in the case of STL export and sending the result to the mesh editor. |
| geometry | Specifies the geometry to export. This can be Occurrence, or the root Component. For STLExport, we also support BRepBody. |
| isValid | Indicates if this object is still valid, i.e. hasn't been deleted or some other action done to invalidate the reference. |
| objectType | Returns a string indicating the type of the object. |
| version | Gets and set the version of the SMT format to write to. The default is to use the current version of the Autodesk Shape Manager kernel that Fusion is using. Specifying an invalid version will result in an assert. Valid versions are 218 up to the current version, which is what this property returns by default when a new SMTExportOptions object is created. |
| Name | Description |
| ExportManager API Sample | Demonstrates how to export f3d to different formats. |