ICreate.Controls.Bars Send comments on this topic.
Animation Property
See Also 
ICreate.Controls.Bars Namespace > SuperPanel Class : Animation Property






Gets or sets the animated GIF displayed on the SuperPanel.

Syntax

Visual Basic (Declaration) 
Public Property Animation As ImageSource
Visual Basic (Usage)Copy Code
Dim instance As SuperPanel
Dim value As ImageSource
 
instance.Animation = value
 
value = instance.Animation
C# 
public ImageSource Animation {get; set;}
Delphi 
public read-write property Animation: ImageSource; 
JScript 
public function get,set Animation : ImageSource
Managed Extensions for C++ 
public: __property ImageSource* get_Animation();
public: __property void set_Animation( 
   ImageSource* value
);
C++/CLI 
public:
property ImageSource^ Animation {
   ImageSource^ get();
   void set (ImageSource^ value);
}

Return Value

A reference to an ImageSource, Animation specifies the animated GIF displayed on the SuperPanel. The default value is null (Nothing in Visual Basic).

Remarks

An ImageSource allows the developer to choose between a user define animated GIF or one of the predefined animated GIFs. A static image can be specified for Animation it will however not animate. The AnimationBounds property specifies the location and size of the Animation.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also