Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 746 Bytes

File metadata and controls

45 lines (35 loc) · 746 Bytes

ImportIGES

Description

Import a 3D IGES file. (Initial Graphics Exchange Specification)

FUNCTION ImportIGES(fileName : STRING): BOOLEAN;
def vs.ImportIGES(fileName):
    return BOOLEAN

Parameters

Name Type Description
fileName STRING full path to the file for import

Examples

resultOK := ImportIGES('file.txt');
import vs

# Import a 3D IGES file.
fileName = 'C:/Temp/example.txt'

ok = vs.ImportIGES(fileName)
if ok:
    vs.Message('ImportIGES succeeded')
else:
    vs.Message('ImportIGES failed')

See Also

VS Functions: ExportIGES

Version

Availability: from Vectorworks 2014

Category