TaskProgress
Returns the execution progress of an audit test.
Compatibility
Available as of IDEA version 9.0
Syntax
TaskProgress(percent as Integer, nextPercentHint as Integer)
Parameters
percent
The current completion status of the audit test run in percent.
nextPercentHint
Estimated completion status at the end of a current audit test run phase in percent.
Remarks
Both percent values should be between 0 and 100.
Example
Sub Main
...
SmartContext.TaskProgress 0,10
...
SmartContext.TaskProgress 11,80
...
SmartContext.TaskProgress 81,90
...
SmartContext.TaskProgress 91,100
...
End Sub