Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 954 Bytes

File metadata and controls

49 lines (39 loc) · 954 Bytes

ExportIGES

Description

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

Parameters

Name Type Description
fileName STRING Output file path.
exportSolidAsSurface BOOLEAN Export solit objects as surface.

Examples

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')

See Also

VS Functions: ImportIGES

Version

Availability: from Vectorworks 2014

Category