ScriptEngineAddCOMType(String, HostItemFlags, Guid, String) Method |
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.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntaxpublic void AddCOMType(
string itemName,
HostItemFlags flags,
Guid clsid,
string serverName
)
Public Sub AddCOMType (
itemName As String,
flags As HostItemFlags,
clsid As Guid,
serverName As String
)
public:
virtual void AddCOMType(
String^ itemName,
HostItemFlags flags,
Guid clsid,
String^ serverName
) sealed
abstract AddCOMType :
itemName : string *
flags : HostItemFlags *
clsid : Guid *
serverName : string -> unit
override AddCOMType :
itemName : string *
flags : HostItemFlags *
clsid : Guid *
serverName : string -> unit
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.
- serverName String
- The name of the server from which to import the type.
Implements
IScriptEngineAddCOMType(String, HostItemFlags, Guid, String)
Remarks
See Also