Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 803 Bytes

File metadata and controls

45 lines (36 loc) · 803 Bytes

ExportSAT

Description

Export the selection into a ACIS SAT 3D model file.

FUNCTION ExportSAT(
				filePath       : STRING;
				solidAsSurface : BOOLEAN): BOOLEAN;
def vs.ExportSAT(filePath, solidAsSurface):
    return BOOLEAN

Parameters

Name Type Description
filePath STRING Output file path.
solidAsSurface BOOLEAN

Examples

resultOK := ExportSAT('file.txt', TRUE);
import vs

# Export the selection into a ACIS SAT 3D model file.
filePath = 'C:/Temp'
solidAsSurface = True

ok = vs.ExportSAT(filePath, solidAsSurface)
if ok:
    vs.Message('ExportSAT succeeded')
else:
    vs.Message('ExportSAT failed')

Version

Availability: from Vectorworks 2013

Category