Click or drag to resize

IScriptEngineAddCOMType(String, String, String) Method

Imports a COM/ActiveX type from the specified server and exposes it to script code. The registered class is specified by programmatic identifier (ProgID).

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
void AddCOMType(
	string itemName,
	string progID,
	string serverName
)

Parameters

itemName  String
A name for the new global script item that will represent the type.
progID  String
The programmatic identifier (ProgID) of the registered class to import.
serverName  String
The name of the server from which to import the type.
Remarks

The progID argument can be a class identifier (CLSID) in standard GUID format with braces (e.g., "{0D43FE01-F093-11CF-8940-00A0C9054228}").

For information about the mapping between host members and script-callable properties and methods, see AddHostObject(String, HostItemFlags, Object).

See Also