Initializes a new instance of the ProgressHelper class with the specified dialog characteristics and time delay.

Namespace:  ESRI.ArcGISExplorer.Application

Assembly:  ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public ProgressHelper(
	string caption,
	string instruction,
	string message,
	int millisecondsDelay
)
Visual Basic (Declaration)
Public Sub New ( _
	caption As String, _
	instruction As String, _
	message As String, _
	millisecondsDelay As Integer _
)

Parameters

caption
Type: System..::.String

The title of the progress dialog window.
instruction
Type: System..::.String

The main message within the dialog window.
message
Type: System..::.String

A secondary message which appears below the instruction.
millisecondsDelay
Type: System..::.Int32

The delay to impose after the Show method has been called before showing the progress dialog window.

Remarks

After creating a ProgressHelper object call the Show()()() method to display the dialog window.

It is recommended that you should enclose the creation of a ProgressHelper object in a "using" statement so that if an exception is thrown, the dispose method will be automatically called thereby properly releasing resources.

See Also