ArcObjects Library Reference (Framework)  

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

.NET Snippets

Show Progress Dialog |