Switch to: V12V11V10V9V8V7V6V5

VProject Class: File Methods

VProject.Open()

Declaration:

Open() 

Description:

Opens the Valentina Project file. Its location was specified in the constructor.

Example:

proj = new Project( "path to local file" )
proj.Open()

VProject.Close()

Declaration:

Close() 

Description:

Closes the Valentina Project file.

Example:

proj = new Project( "path to local file" )
proj.Open()
 
...
some job
...
 
proj.Close()
proj = nil