Export the document in 3D IGES file. (Initial Graphics Exchange Specification)
FUNCTION ExportIGES(
fileName : STRING;
exportSolidAsSurface : BOOLEAN): BOOLEAN;def vs.ExportIGES(fileName, exportSolidAsSurface):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| fileName | STRING | Output file path. |
| exportSolidAsSurface | BOOLEAN | Export solit objects as surface. |
resultOK := ExportIGES('file.txt', TRUE);import vs
# Export the document in 3D IGES file.
fileName = 'C:/Temp/example.txt'
exportSolidAsSurface = True
ok = vs.ExportIGES(fileName, exportSolidAsSurface)
if ok:
vs.Message('ExportIGES succeeded')
else:
vs.Message('ExportIGES failed')VS Functions: ImportIGES
Availability: from Vectorworks 2014