This document is archived and information here might be outdated.  Recommended version.


IProgressDialogFactory.Create Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Framework > ESRI.ArcGIS.Framework > Interfaces > IP > IProgressDialogFactory Interface > IProgressDialogFactory.Create Method
ArcGIS Developer Help

IProgressDialogFactory.Create Method

Creates a progress dialog.

[Visual Basic .NET]
Public Function Create ( _
    ByVal trackCancel As ITrackCancel, _
    ByVal hWnd As Integer _
) As IStepProgressor
[C#]
public IStepProgressor Create (
    ITrackCancel trackCancel,
    int hWnd
);

Product Availability

Available with ArcGIS Desktop.

Remarks

The Create method creates and displays a progress dialog box. You can pass a CancelTracker object into this method to allow the user to cancel the process.

This method returns a ProgressDialog object so that you can set the properties of the dialog and the progressor.

See Also

IProgressDialogFactory Interface