Export

Exports the model to a file.

Note: This script does not export image file types or GDSII files. See: ExportModelImageToFile and ExportGDSII.
UI Access ModelerExport
Parameters
Name Type Description

<Parameters>

Array

Structured array.

Array("NAME:ExportParameters",

"AllowRegionDependentPartSelectionForPMLCreation:=", <boolean>,

"AllowRegionSelectionForPMLCreation:=", <boolean>,

"Selections:=" , <string list>,

"File Name:=" , <string filepath>,

"Major Version:=" , <integer (-1 if not applicable)>,

"Minor Version:=" , <integer (-1 if not applicable)>)

Return Value None.

Python Syntax

Export(<Parameters>)

Python Example

oEditor.Export(

["NAME:ExportParameters",

"AllowRegionDependentPartSelectionForPMLCreation:=", True,

"AllowRegionSelectionForPMLCreation:=", True,

"Selections:=" , "Box1,Box2,Box3",

"File Name:=" , "C:/Users/jdoe/Desktop/export.sab",

"Major Version:=" , 25,

"Minor Version:=" , 0

])