Utiliser des objets COM dans MATLAB
Microsoft® Component Object Model (COM) propose un framework permettant d’intégrer des composants logiciels binaires réutilisables dans une application. Comme ces composants sont implémentés avec du code compilé, il est possible d’écrire le code source dans des langages de programmation qui supportent COM. Les montées en version des applications sont plus simples car il suffit d’échanger les composants sans recompiler toute l’application. De plus, l’emplacement des composants est transparent pour l’application. Il est ainsi possible de les déplacer vers un processus distinct, voire un système distant, sans modifier l’application.
Une autre possibilité consiste à utiliser une application Microsoft .NET. Pour plus d’informations, consultez Appeler .NET à partir de MATLAB.
MATLAB supporte COM et .NET sur la plateforme Windows®.
Fonctions
actxserver | Create COM server |
actxGetRunningServer | Handle to running instance of Automation server |
methodsview | View class methods |
eventlisteners | List event handler functions associated with COM object events |
registerevent | Associate event handler for COM object event at run time |
unregisterallevents | Unregister all event handlers associated with COM object events |
unregisterevent | Unregister event handler associated with COM object event at run time |
iscom | Determine whether input is COM object |
isevent | Determine whether input is COM object event |
isinterface | Determine whether input is COM interface |
Objets
COM | Access COM components from MATLAB |
Rubriques
Intégration de COM
- MATLAB COM Integration
COM concepts and an overview of COM support in MATLAB. - Get Started with COM
Examples that show how to use COM interface with MATLAB. - Register Servers
Before using COM objects, you must register their servers. - Create COM Objects
How to create Microsoft controls and COM server objects. - Handle COM Data in MATLAB
Pass data to and handle data from a COM object. - COM Object Properties
List property names and set values, work with multiple objects and properties, use the Property Inspector, use enumerated values and custom properties. - COM Methods
You execute, or invoke, COM functions or methods belonging to COM objects. - COM Events
Respond to events, write event handlers. - COM Event Handlers
Useregisterevent
to register server events. - Save and Delete COM Objects
Use these MATLAB functions to save and restore the state of a COM control object. - COM Object Interfaces
Use COM interfaces. - COM Collections
COM collections are a way to support groups of related COM objects that can be iterated over. - Supported Client/Server Configurations
COM client-server configurations in MATLAB. - MATLAB Application as DCOM Client
Distributed Component Object Model (DCOM) is a protocol that allows clients to use remote COM objects over a network. - Explore COM Objects
Learn about a COM object using MATLAB commands.
Microsoft Office
- Write Spreadsheet Data Using Excel as Automation Server
This example shows how to write a MATLAB matrix to an Excel® spreadsheet. - Change Cursor in Spreadsheet
This example shows how to change the cursor icon in an Excel® spreadsheet. - Change Row Height in Range of Spreadsheet Cells
This example shows how to change the height of a row, defined by aRange
object, in a spreadsheet. - Insert Spreadsheet After First Sheet
This example shows how to skip an optional input argument in the ExcelAdd
method, used to insert a sheet into a workbook. - Connect to Existing Excel Application
This example shows how to read data from an open file,weekly_log.xlsx
, in MATLAB. - Display Message for Workbook OnClose Event
This example shows how to handle a COM interface event, how to set up an event in a Microsoft Excelworkbook
object, and how to handle itsBeforeClose
event.
Résolution des problèmes
MATLAB COM Support Limitations
Microsoft does not support loading 32-bit DLLs or in-process COM servers into a 64-bit application, or conversely.
Interpreting Argument Callouts in COM Error Messages
When a MATLAB client sends a command with an invalid argument to a COM server application, the server sends back an error message in the following format.