Autodesk Vault ProfessionalVault API

GetProgressView Method

Autodesk.DataManagement.Client.Framework.FormsLibrary

Launches a new instance of a Progress Dialog

Syntax

public static IProgressView GetProgressView(
   System.string caption,
   System.string header,
   System.Collections.Generic.IEnumerable<ProgressValue> values,
   System.int perc
)
Public Shared Function GetProgressView( _
   ByVal caption As System.String, _
   ByVal header As System.String, _
   Optional ByVal values As System.Collections.Generic.IEnumerable(Of ProgressValue), _
   Optional ByVal perc As System.Integer _
) As IProgressView

Parameters

NameDescription
captionThe caption to appear in the Progress Dialog
headerThe top level header describing the current state of an operation
valuesA list of information values to display in the Progress Dialog
percThe Percent complete. If -1, the dialog will use a cylon progress indicator instead of a percentage based indicator

Return Value

An interface which can be used to control the state of the Progress Dialog

See Also