Everything

project.Close


This function closes a project.

[Specification format]

project.Close(save = False)

[Argument(s)]

Argument

Description

save

Specify whether to save all files being edited and a project.

True: Save all editing files and a project.

False: Do not save all editing files and a project (default).

[Return value]

If the project was closed successfully: True

If there was an error when closing the project: False

[Detailed description]

-

This function closes a currently opened project.

-

If save is set to "True", then all files being edited and a project are saved.

[Example of use]

>>>project.Close()
True
>>>