Defines that a SAT 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. |
| Name | Description |
| ExportManager API Sample | Demonstrates how to export f3d to different formats. |