How can I disable the ZOOM context menu in MATLAB 7.6 (R2008a)?
1 次查看(过去 30 天)
显示 更早的评论
I want to disable the context menu at right-click when ZOOM is active. In previous releases I used right-click to zoom out.
采纳的回答
MathWorks Support Team
2009-6-27
To control the behavior of a right-click action when ZOOM is active change the property ‘rightclickaction’ of the zoom mode object.
A value of 'InverseZoom' causes a right-click to zoom out.
h=zoom(gcf);
set(h,'rightclickaction','InverseZoom');
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!