This function runs a clean.
[Specification format]
[Argument(s)]
|
|
all
|
Specify whether to clean a project including subprojects.
True: Clean all project including subprojects.
False: Clean an active project (default).
|
[Return value]
If a clean was completed successfully: True
If there was an error when running a clean: False
[Detailed description]
- | This function runs a clean of a project (removes the files generated by a build). |
- | If all is set to "True", then a clean of the subproject is run. |
[Example of use]
>>>build.Clean()
True
>>>
|