How can I disable the ZOOM context menu in MATLAB 7.6 (R2008a)?
2 ビュー (過去 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!