| Products & Services | Industries | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → MATLAB |
| Contents | Index |
| Learn more about MATLAB |
S = h.events
S = events(h)
S = h.events returns structure array S containing all events, both registered and unregistered, known to the COM object, and the function prototype used when calling the event handler routine. For each array element, the structure field is the event name and the contents of that field is the function prototype for that event's handler.
S = events(h) is an alternate syntax.
COM functions are available on Microsoft Windows systems only.
Create an mwsamp control and list all events:
f = figure ('position', [100 200 200 200]);
h = actxcontrol ('mwsamp.mwsampctrl.2', [0 0 200 200], f);
h.events
MATLAB software displays information similar to:
Click = void Click() DblClick = void DblClick() MouseDown = void MouseDown(int16 Button, int16 Shift, Variant x, Variant y) Event_Args = void Event_Args(int16 typeshort, int32 typelong, double typedouble, string typestring, bool typebool)
Assign the output to a variable and get one field of the returned structure:
ev = h.events; ev.MouseDown
MATLAB displays:
ans = void MouseDown(int16 Button, int16 Shift, Variant x, Variant y)
Open a Microsoft® Excel® application and list all events for a Workbook object:
myApp = actxserver('Excel.Application');
wbs = myApp.Workbooks;
wb = wbs.Add;
wb.events
The MATLAB software displays all events supported by the Workbook object.
Open = void Open()
Activate = void Activate()
Deactivate = void Deactivate()
BeforeClose = void BeforeClose(bool Cancel)
.
.isevent, eventlisteners, registerevent, unregisterevent, unregisterallevents
![]() | events | Execute | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |