Import file through RhinoCommon - Options?

Hello,

I need to import an STL into a document file through RhinoCommon.

I am using the Import method of the RhinoDoc object. It imports, but I need to input options, such as the units of the STL such as:
image

I can see in the documentation of the Import method that there is an ArchivableDictionary with the options, but there is no documentation on which string pair should be given for a filetype.

public [Boolean](https://learn.microsoft.com/en-us/dotnet/api/System.Boolean) Import(
[String ](https://learn.microsoft.com/en-us/dotnet/api/System.String)filePath,
[ArchivableDictionary ](https://developer.rhino3d.com/api/rhinocommon/rhino.collections.archivabledictionary)options
)

Can anyone either share the options of the STL format, or point me to the direction of where to find it?

Thank you,

Hi @scudelari,

Try using the FileStl class.

– Dale