Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 841 Bytes

File metadata and controls

39 lines (30 loc) · 841 Bytes

InstallScriptAddPath

Description

This function can only be used doring Partner Product install script to add files, by full path, to the install memento for automatic deletion during uninstall.

PROCEDURE InstallScriptAddPath(fullPath : DYNARRAY[] of CHAR);
def vs.InstallScriptAddPath(fullPath):
    return None

Parameters

Name Type Description
fullPath DYNARRAY[] of CHAR

Examples

InstallScriptAddPath(fullPath);
import vs

# This function can only be used doring Partner Product install script to add
# files, by full path, to the install memento for automatic deletion during
# uninstall.
fullPath = 'C:/Temp'

vs.InstallScriptAddPath(fullPath)

Version

Availability: from Vectorworks 2021

Category