Click or drag to resize

IScriptEngineAddCOMType(String, HostItemFlags, Guid) Method

Imports a COM/ActiveX type 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.4.5
Syntax
void AddCOMType(
	string itemName,
	HostItemFlags flags,
	Guid clsid
)

Parameters

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