Partager via


StatusBar.Progress, méthode

Crée, modifie ou supprime la barre de progression dans la StatusBar.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
Sub Progress ( _
    InProgress As Boolean, _
    Label As String, _
    AmountCompleted As Integer, _
    Total As Integer _
)
void Progress(
    bool InProgress,
    string Label,
    int AmountCompleted,
    int Total
)
void Progress(
    bool InProgress, 
    [InAttribute] String^ Label, 
    [InAttribute] int AmountCompleted, 
    [InAttribute] int Total
)
abstract Progress : 
        InProgress:bool * 
        Label:string * 
        AmountCompleted:int * 
        Total:int -> unit
function Progress(
    InProgress : boolean, 
    Label : String, 
    AmountCompleted : int, 
    Total : int
)

Paramètres

  • InProgress
    Type : Boolean

    Obligatoire. Indique si la barre de progression est affichée. Si la valeur de InProgress est False, la barre de progression est désactivée. Sinon, elle est affichée.

  • Label
    Type : String

    Optionnel. Étiquette affichée sur la barre de progression.

  • AmountCompleted
    Type : Int32

    Optionnel. Nombre d'étapes réalisées dans l'opération.

  • Total
    Type : Int32

    Optionnel. Nombre total d'étapes à réaliser au cours de l'opération.

Exemples

Sub ProgressExample()
   Dim SBar As StatusBar
   SBar = DTE.StatusBar
   SBar.Progress(True, "doing something", 90, 100)
   SBar.Progress(False)
   SBar.Animate(True, vsStatusAnimation.vsStatusAnimationSave)
End Sub

Sécurité .NET Framework

Voir aussi

Référence

StatusBar Interface

EnvDTE, espace de noms