This event informs that a build has been completed.
[Handler format]
build.BuildCompleted(sender, e)
|
[Handler argument(s)]
|
|
sender
|
The sender of the build event are passed.
|
e
|
The parameters at the end of build execution are passed.
|
[Return value]
None
[Detailed description]
- | This event informs that a build has been completed. |
[Example of use]
>>>def buildCompleted(sender, e):
... print "Error = {0}".format(e.Error)
... print "BuildError = " + e.HasBuildError.ToString()
... print "BuildWarning = " + e.HasBuildWarning.ToString()
... print "BuildCancelled = " + e.Cancelled.ToString()
...
>>>build.BuildCompleted += buildCompleted ... Event connection
>>>build.All(True)
Error = None
BuildError = False
BuildWarning = False
BuildCancelled = False
True
>>>
>>>build.File("C:/sample/src/test1.c")
Error = None
BuildError = False
BuildWarning = False
BuildCancelled = False
True
>>>
>>>
>>>build.Clean()
Error = None
BuildError = False
BuildWarning = False
BuildCancelled = False
True
>>>
|