ProgressBarMessager PerformStep Method CleanCode C# Libraries v1.2.03 API
Performs a step, showing progress of a lengthy operation.

Namespace: CleanCode.GeneralComponents.Controls
Assembly: CleanCode.GeneralComponents (in CleanCode.GeneralComponents.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public void PerformStep(
	string statusMessage
)
Remarks

From the eponymous method of the OnlineProgressBar, the "step" here involves several actions: (a) marking the previous step completed (changing its icon from a current arrow to a check mark); (b) advancing the child ProgressBar; (c) and showing a new current step. To record that the final step is complete, invoke PerformStep(String) with a null argument; this will perform only the (a) action, omitting (b) and (c).
See Also