HBCMS更多的中文手册参考:

AddDesktopComponent Method

DHTML文档教程

Adds a Web site or image to the Microsoft® Active Desktop®.

dhtml语法

external.AddDesktopComponent(sURL, sType [, iLeft] [, iTop] [, iWidth] [, iHeight])

Parameters

sURL Required. String that specifies the location of the Web site or image to be added to the Active Desktop.
sType Required. String containing one of the following values that specify the type of item to add.
imageSpecifies the component is an image.
websiteSpecifies the component is a Web site.
iLeft Optional. Integerthat specifies the position of the left edge, in screen coordinates.
iTop Optional. Integerthat specifies the position of the top edge, in screen coordinates.
iWidth Optional. Integerthat specifies the width, in screen units.
iHeight Optional. Integerthat specifies the height, in screen units.

Return Value

No return value.

Remarks

The user must have Active Desktop installed for this method to work. If Active Desktop is not installed, this method is not invoked.

This method is not supported in html applications (htas).

DHTML代码范例

This example uses the AddDesktopComponent method to add the Microsoft Web site as an Active Desktop component.

window.external.AddDesktopComponent(
"http://www.microsoft.com",
"website",
100,100,200,200
);

是否符合公共标准

There is no public standard that applies to this method.

Applies To

external