Table of Contents

Class ProgressDialog

Namespace
Skyline.DataMiner.Utils.InteractiveAutomationScript
Assembly
Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit.dll

When progress is displayed, this dialog has to be shown without requiring user interaction. When you are done displaying progress, call the Finish method and show the dialog with user interaction required.

public class ProgressDialog : Dialog
Inheritance
ProgressDialog
Inherited Members
Extension Methods

Constructors

ProgressDialog(IEngine)

Initializes a new instance of the ProgressDialog class. Used to instantiate a new instance of the ProgressDialog class.

Properties

OkButton

Gets the button that is displayed after the Finish method is called.

Methods

AddProgress(string)

Adds the provided text to the current progress.

AddProgressLine(string)

Adds the provided text on a new line to the current progress.

ClearProgress()

Clears the progress.

Finish()

Call this method when you are done updating the progress through this dialog. This will cause the OK button to appear. Display this form with user interactivity required after this method is called.

SetProgress(string)

Clears the current progress and displays the provided text.