ProjectBuildComplete Property
Description
Returns the status of the current project build.
Syntax
ReadOnly Property ProjectBuildComplete As Boolean
Return Value
True if the project build is complete, False if not.
See Also
.BuildProject Method
ProjectBuildComplete Example
VB Example:
If m_spel.ProjectBuildComplete Then
lblBuild.Text = "Project build is Complete"
Else
lblBuild.Text = "Project build is not Complete"
End If
C# Example:
if (m_spel.ProjectBuildComplete)
lblBuild.Text = "Project build is Complete";
else
lblBuild.Text = "Project build is not Complete";