method ToolTip.ReplaceIcon ([Icon as Variant], [Index as Variant])
Adds a new icon, replaces an icon or clears the control's image list.

TypeDescription
Icon as Variant A long expression that indicates the icon's handle.
Index as Variant A long expression that indicates the index where icon is inserted.
ReturnDescription
LongA long expression that indicates the index of the icon in the images collection
Use the ReplaceIcon method to add, remove or clear icons in the control's images collection. Use the Images method to assign a list of icons to the tooltip. The ImageSize property defines the size (width/height) of the icons within the control's Images collection. The HTMLPicture property handles a collection of custom size picture being displayed in the HTML captions, using the <img> built-in HTML elements. Also, the ReplaceIcon property can clear the images collection.

The following VB sample adds a new icon to control's images list:

 i = ExToolTip1.ReplaceIcon( LoadPicture("d:\icons\help.ico").Handle), i specifies the index where the icon is added

The following VB sample replaces an icon into control's images list::

 i = ExToolTip1.ReplaceIcon( LoadPicture("d:\icons\help.ico").Handle, 0), i is zero, so the first icon is replaced.  

The following VB sample removes an icon from control's images list:

 ExToolTip1.ReplaceIcon 0,  i, i specifies the index of icon removed.

The following VB clears the control's icons collection:

 ExToolTip1.ReplaceIcon 0,  -1