FUNCTION ExportSTEP(
filePath : DYNARRAY[] of CHAR;
exportSolidsAsSurfaces : BOOLEAN): BOOLEAN;def vs.ExportSTEP(filePath, exportSolidsAsSurfaces):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| filePath | DYNARRAY[] of CHAR | |
| exportSolidsAsSurfaces | BOOLEAN |
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')Availability: from Vectorworks 2018