我对 activex owc11.Spreadsheet.11 有疑问。
在我的 Matlab 脚本中,我声明了 activex:
CONTROL='OWC11.SPREADSHEET.11';
positions=[10,10,10,10];
handles.activex1=actxcontrol(CONTROL,[positions], myFigHandle);
我想控制一些事件,如“SheetChange”和“EndEdit”,将它们与子功能(@subfunctionSheetChange、@subfunctionEndEdit)相关联。
我尝试使用此代码:
handles.activex1.registerevents({'SheetChange', '@subfunctionSheetChange'});
handles.activex1.registerevents({'EndEdit', '@subfunctionEndEdit'});
..但我只达到这个结果:
???Error using ==> comeventcallback (at line....) 错误触发事件'SheetChange'到 MainFunction(@subfunctionSheetChange)
我该如何解决?请帮我