Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 790 Bytes

File metadata and controls

42 lines (32 loc) · 790 Bytes

PythonSetSearchPath

Description

Set the search path for python files.

PROCEDURE PythonSetSearchPath(pathList : DYNARRAY[] of CHAR);
def vs.PythonSetSearchPath(pathList):
    return None

Parameters

Name Type Description
pathList DYNARRAY[] of CHAR A string of semicolon delimited paths. The path it similar to the 'Open' function path parameter.

Examples

PythonSetSearchPath(pathList);
import vs

# Set the search path for python files.
pathList = 'C:/Temp'

vs.PythonSetSearchPath(pathList)

See Also

VS Functions: PythonGetSearchPath | PythonExecute

Version

Availability: from Vectorworks 2014

Category