Partager via


StatusBar.Animate, méthode

Affiche une image animée dans la StatusBar.

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

Syntaxe

'Déclaration
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
)

Paramètres

  • On
    Type : Boolean

    Obligatoire. Indique si l'animation sera activée (True) ou désactivée (False).

  • AnimationType
    Type : Object

    Obligatoire. Constante vsStatusAnimation indiquant une icône animée à afficher.

    AnimationType peut également comporter un élément IPicture ou IPictureDisp correspondant à une bitmap dont la hauteur est égale à 16 pixels et dont la largeur est un multiple de 16 pixels. Pour désactiver une animation personnalisée, vous devez transmettre un élément IPicture ou IPictureDisp strictement identique.

Exemples

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

Sécurité .NET Framework

Voir aussi

Référence

StatusBar Interface

EnvDTE, espace de noms