This function changes the active project.
[Specification format]
project.Change(projectName)
|
[Argument(s)]
|
|
projectName
|
Specify the full path of the project or subproject to be changed.
|
[Return value]
If the active project was changed successfully: True
If there was an error when changing the active project: False
[Detailed description]
- | This function changes the project specified in projectName to the active project. |
- | The project file specified in projectName must be included the currently opened project. |
[Example of use]
>>>project.Close("C:/project/sample/sub1/subproject.mtpj")
True
>>>
|