msSiteModeAddButtonStyle Method
Defines an alternate icon image and tooltip for the specified button.
Syntax
pvarStyleID = window.external.msSiteModeAddButtonStyle(uiButtonID, bstrIconUrl [, pvarTooltip])
Parameters
uiButtonID Required. The ID of a button that is previously installed with msSiteModeAddThumbBarButton. bstrIconUrl Required. An absolute or relative URI of an icon resource. pvarTooltip Optional. A description of the button.
Return Value
Returns the ID of the new button style.
Possible Exceptions
Not implemented (0x80004001) This method is not supported on Windows CE.
Remarks
A button style consists of an additional icon and tooltip for a button position. The msSiteModeAddButtonStyle method only creates button styles; to apply them, call msSiteModeShowButtonStyle. The original icon and tooltip are automatically saved as Style
0and do not need to be added again.The button returns the same button ID no matter which button style is displayed. To perform the correct action, your application will need to retain the button state internally.
The icon is downloaded asynchronously. If the download fails, a blank button is used instead.
Example
The following script adds two button styles to
btnPlayPause, which was created by a prior call to the msSiteModeAddThumbBarButton method.function addButtonStyles() { stylePlay = window.external.msSiteModeAddButtonStyle(btnPlayPause, 'http://example.com/img/play.ico', 'Play'); stylePause = window.external.msSiteModeAddButtonStyle(btnPlayPause, 'http://example.com/img/pause.ico', 'Pause'); }
Applies To
external
See Also