Import a ACIS SAT 3D model file.
FUNCTION ImportSAT(
filePath : STRING;
doSingleSym : BOOLEAN): HANDLE;def vs.ImportSAT(filePath, doSingleSym):
return HANDLE| Name | Type | Description |
|---|---|---|
| filePath | STRING | full path to the file for import |
| doSingleSym | BOOLEAN | import the file as a symbol |
resultH := ImportSAT('file.txt', TRUE);import vs
# Import a ACIS SAT 3D model file.
filePath = 'C:/Temp'
doSingleSym = True
objHandle = vs.ImportSAT(filePath, doSingleSym)
if objHandle is not None:
vs.Message('Created object handle: ' + str(objHandle))Availability: from Vectorworks 2013