Udostępnij za pośrednictwem


Metoda StatusBar.Progress —

Tworzy, modyfikuje i usuwa wewnątrz formantu licznika StatusBar .

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
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
)

Parametry

  • InProgress
    Typ: Boolean

    Wymagany.Wskazuje, czy licznik jest wyświetlany.Jeśli InProgress jest ustawiona na False, licznik jest wyłączony.W przeciwnym razie licznik jest wyświetlany.

  • Label
    Typ: String

    Opcjonalne.Etykieta do wyświetlenia w formancie miernika.

  • AmountCompleted
    Typ: Int32

    Opcjonalne.Liczba etapów operacji, które zostały ukończone.

  • Total
    Typ: Int32

    Opcjonalne.Całkowita liczba kroków w tej operacji.

Przykłady

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

StatusBar Interfejs

Przestrzeń nazw EnvDTE