Udostępnij za pośrednictwem


Metoda StatusBar.Animate —

Wyświetla animowanego obrazu 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: System.Boolean
    Wymagane.Wskazuje, czy należy włączyć animację (True) lub off (False).
  • AnimationType
    Typ: System.Object
    Wymagane.A vsStatusAnimation wskazujące animowane ikony, aby wyświetlić stałą.
    Alternatywnie AnimationType może również podjąć IPicture lub IPictureDisp mapa bitowa 16 pikseli i wielokrotności 16 pikseli.Aby wyłączyć animacji niestandardowej, trzeba 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