actxserver
Create COM server
Description
creates a local OLE Automation server, where c
= actxserver(progid
)progid
is the
programmatic identifier (ProgID) of an OLE-compliant COM
server. The function returns a handle to the default interface of the server.
For components implemented in a dynamic link library (DLL),
actxserver
creates an in-process server. For components
implemented as an executable (EXE), actxserver
creates an
out-of-process server. You can create out-of-process servers either on the client
system or on any other system on a network that supports DCOM.
creates a server on a remote computer.c
= actxserver(progid
,'machine',machineName
)
Examples
Input Arguments
Limitations
COM functions are available on Microsoft Windows® systems only.
64-bit MATLAB does not support custom interfaces.
The MATLAB COM Interface does not support invoking functions with optional parameters.
Tips
You can register events for COM servers. For more information, see COM Events.
Version History
Introduced before R2006a