Type | Description | |||
Icon as Variant | A long expression that indicates the icon's handle. By default, the Icon parameter is 0, if it is missing. | |||
Index as Variant | A long expression that indicates the index where icon is inserted. By default, the Index parameter is -1, if it is missing. |
Return | Description | |||
Long | A long expression that indicates the index of the icon in the images collection |
The following sample shows how to add a new icon to toolbar's images list:
i = SwimLane1.ToolBarReplaceIcon( LoadPicture("d:\icons\help.ico").Handle), where i is the index to insert the icon
The following sample shows how to replace an icon into toolbar's images list::
i = SwimLane1.ToolBarReplaceIcon( LoadPicture("d:\icons\help.ico").Handle, 0), in this case the i is zero, because the first icon was replaced.
The following sample shows how to remove an icon from toolbar's images list:
SwimLane1.ToolBarReplaceIcon 0, i, in this case the i is the index of the icon to remove
The following sample shows how to clear the toolbar's icons collection:
SwimLane1.ToolBarReplaceIcon 0, -1