StatusBar.Animate-Methode

Zeigt ein animiertes Bild in StatusBar an.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

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

Parameter

  • On
    Typ: System.Boolean
    Erforderlich.Gibt an, ob die Animation aktiviert (True) oder deaktiviert (False) werden soll.
  • AnimationType
    Typ: System.Object
    Erforderlich.Eine vsStatusAnimation-Konstante, bei der ein animiertes Symbol angezeigt wird.
    AnimationType kann auch IPicture oder IPictureDisp sein, d. h. eine Bitmap von 16 Pixel Höhe und einem Vielfachen von 16 Pixel Breite.Zum Deaktivieren der benutzerdefinierten Animation müssen Sie genau dasselbe IPicture bzw. IPictureDisp übergeben.

Beispiele

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

.NET Framework-Sicherheit

Siehe auch

Referenz

StatusBar Schnittstelle

EnvDTE-Namespace