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

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
)
Visual Basic (Declaration)
Public Sub New ( _
	caption As String, _
	instruction As String, _
	message As String _
)

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.

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