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






Gets or sets the Image to display on the SuperPanel.

Syntax

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

Return Value

A reference to an ImageSourceImage specifies the Image to display on the SuperPanel. The default value is null (Nothing in Visual Basic).

Remarks

An ImageSource allows the developer to choose between a user define image or one of the predefined images. The ImageBounds property specifies the location and size of the Image.

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