Udostępnij za pośrednictwem


Metoda StatusBar.Animate —

Wyświetla obraz animowany w StatusBar.

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

Składnia

'Deklaracja
Sub Animate ( _
    On As Boolean, _
    AnimationType As Object _
)
void Animate(
    bool On,
    Object AnimationType
)
void Animate(
    bool On, 
    Object^ AnimationType
)
abstract Animate : 
        On:bool * 
        AnimationType:Object -> unit
function Animate(
    On : boolean, 
    AnimationType : Object
)

Parametry

  • On
    Typ: Boolean

    Wymagany.Wskazuje, czy należy włączyć animację (True) lub wyłączony (False).

  • AnimationType
    Typ: Object

    Wymagany.A vsStatusAnimation stałą animowana ikona do wyświetlenia.

    Alternatywnie AnimationType można również wykonać IPicture lub IPictureDisp będąca wielokrotnością 16 pikseli szerokości i mapa bitowa 16 pikseli.Aby wyłączyć animacji niestandardowych, należy przekazać takie same dokładnie IPicture lub IPictureDisp.

Przykłady

Sub AnimateExample()
   Dim SBar As StatusBar
   SBar = DTE.StatusBar
   ' Turn on the "save" Status Bar animation.
   SBar.Animate(True, vsstatusanimation.vsStatusAnimationSave)
   MsgBox("Notice the Status Bar animation.")
   ' Turn off the animation.
   SBar.Animate(False, vsstatusanimation.vsStatusAnimationSave)
End Sub

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

StatusBar Interfejs

Przestrzeń nazw EnvDTE