Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 759 Bytes

File metadata and controls

45 lines (36 loc) · 759 Bytes

ImportSketchup1

Description

Import a sketch up file.

FUNCTION ImportSketchup1(
				filePath    : STRING;
				doSingleSym : BOOLEAN): BOOLEAN;
def vs.ImportSketchup1(filePath, doSingleSym):
    return BOOLEAN

Parameters

Name Type Description
filePath STRING
doSingleSym BOOLEAN

Examples

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

# Import a sketch up file.
filePath = 'C:/Temp'
doSingleSym = True

ok = vs.ImportSketchup1(filePath, doSingleSym)
if ok:
    vs.Message('ImportSketchup1 succeeded')
else:
    vs.Message('ImportSketchup1 failed')

Version

Availability: from Vectorworks 2014

Category