Click or drag to resize

ScriptEngineAddCOMType Method (String, HostItemFlags, Guid, String)

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

Namespace:  Microsoft.ClearScript
Assembly:  ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.4
Syntax
public void AddCOMType(
	string itemName,
	HostItemFlags flags,
	Guid clsid,
	string serverName
)

Parameters

itemName
Type: SystemString
A name for the new global script item that will represent the type.
flags
Type: Microsoft.ClearScriptHostItemFlags
A value that selects options for the operation.
clsid
Type: SystemGuid
The class identifier (CLSID) of the registered class to import.
serverName
Type: SystemString
The name of the server from which to import the type.
Remarks
For information about the mapping between host members and script-callable properties and methods, see AddHostObject(String, HostItemFlags, Object).
See Also