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






Gets or sets the ImageList containing the small version of the images displayed on the SideBar.

Syntax

Visual Basic (Declaration) 
Public Property ImageSmallList As ImageList
Visual Basic (Usage)Copy Code
Dim instance As SideBar
Dim value As ImageList
 
instance.ImageSmallList = value
 
value = instance.ImageSmallList
C# 
public ImageList ImageSmallList {get; set;}
Delphi 
public read-write property ImageSmallList: ImageList; 
JScript 
public function get,set ImageSmallList : ImageList
Managed Extensions for C++ 
public: __property ImageList get_ImageSmallList();
public: __property void set_ImageSmallList( 
   ImageList value
);
C++/CLI 
public:
property ImageList ImageSmallList {
   ImageList get();
   void set (ImageList value);
}

Return Value

A reference to an ImageList, this property stores the ImageList containing the small version of the images displayed on the SideBar. The default value is null (Nothing in Visual Basic).

Remarks

The small images are displayed on the SideBar footer and menu. These images must be 16 pixels wide and 16 pixels high. If not then the SideBar scales them to the required dimensions. If the SideBar obtains its images from the ImageList then the ImageSmallList can be used to contain the small version of the images. This behaviour requires that the images are specified using the ImageIndex or ImageKey properties.

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