StatusBar.Animate(Boolean, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays an animated picture in the StatusBar.
public:
void Animate(bool On, System::Object ^ AnimationType);
public:
void Animate(bool On, Platform::Object ^ AnimationType);
void Animate(bool On, winrt::Windows::Foundation::IInspectable const & AnimationType);
[System.Runtime.InteropServices.DispId(5)]
public void Animate (bool On, object AnimationType);
[<System.Runtime.InteropServices.DispId(5)>]
abstract member Animate : bool * obj -> unit
Public Sub Animate (On As Boolean, AnimationType As Object)
Parameters
- On
- Boolean
Required. Indicates whether to turn the animation on (True
) or off (False
).
- AnimationType
- Object
Required. A vsStatusAnimation constant indicating an animated icon to display.
Alternatively, AnimationType
can also take an IPicture
or IPictureDisp
which is a bitmap 16 pixels high and a multiple of 16 pixels wide. To turn off the custom animation, you must pass the same exact IPicture
or IPictureDisp
.
- Attributes
Examples
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