Canguro.Controller.CommandServices.ReportProgress C# (CSharp) Method

ReportProgress() public method

Method to allow commands to display their progress. If a command takes some time to complete without user intervention, it should call this method.
public ReportProgress ( uint mainProgress ) : void
mainProgress uint Percentage completed of the whole command's execution
return void
        public void ReportProgress(uint mainProgress)
        {
            controller.MainFrm.ReportProgress(controller.ModelCommand.Title, mainProgress, "", 0, DateTime.Now);
        }

Same methods

CommandServices::ReportProgress ( uint mainProgress, string subtaskText, uint subtaskProgress ) : void