Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 744 Bytes

File metadata and controls

41 lines (33 loc) · 744 Bytes

ExportSTEP

FUNCTION ExportSTEP(
				filePath               : DYNARRAY[] of CHAR;
				exportSolidsAsSurfaces : BOOLEAN): BOOLEAN;
def vs.ExportSTEP(filePath, exportSolidsAsSurfaces):
    return BOOLEAN

Parameters

Name Type Description
filePath DYNARRAY[] of CHAR
exportSolidsAsSurfaces BOOLEAN

Examples

resultOK := ExportSTEP(filePath, TRUE);
import vs

filePath = 'C:/Temp'
exportSolidsAsSurfaces = True

ok = vs.ExportSTEP(filePath, exportSolidsAsSurfaces)
if ok:
    vs.Message('ExportSTEP succeeded')
else:
    vs.Message('ExportSTEP failed')

Version

Availability: from Vectorworks 2018

Category