COM object event with input parameter
2 次查看(过去 30 天)
显示 更早的评论
The ophir powermeter's Event has input parameters to determind which device fires the event.
However it seem Matlab does not support event with input parameters? not like C++
For example:
C = actxcontrol('mwsamp.mwsampctrl.2',[0 0 200 200]);
registerevent(C,{'Click' @myclick})
eventlisteners(C)
It seem Matlab only support event name (char) vs event handler (func) pairs
I know how to pass parameter to event handler, the problem is , who to pass parameter to the event itself.
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Use COM Objects in MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!