h = actxserver (progid) ¶Create a COM server using the progid identifier.
Returns h, a handle to the default interface of the COM server.
Example:
# create a COM server running Microsoft Excel
app = actxserver ('Excel.Application');
# free the object
destroy (app);
Package: windows