ReportNormalProgress Method
Reports relative progress in terms of current vs total. Use total = 100 to report the progress as percentage.
Syntax
Sub ReportNormalProgress(current, total) |
Parameters
current
Type: Integer
The current progress
total
Type: Integer
The total progress
Return Value
None
Examples
IronPython
#Report normal progress Host.ReportNormalProgress(5, 100) |
C#
//Report normal progress ReportNormalProgress(5, 100); |
Remarks