Exports an advanced view display mode to a formatted text file. Use the ImportViewDisplayMode method to import it.
Rhino.ExportViewDisplayMode (strMode, strFilename)
strMode |
Required. String. The identifier of the display mode obtained from the ViewDisplayModes method. |
strFilename |
Required. String. The file name. |
Boolean |
True or False indicating success of failure. |
Null |
On error. |
Dim strName, strMode
strName = "MyWireframe"
strMode = Rhino.ViewDisplayModeId(strName)
If Not IsNull(strMode) Then
Call Rhino.ExportViewDisplayMode(strMode, "C:\Users\Dale\Desktop\MyWireframe.ini")
End If