How can I turn the property inspector off?
23 次查看(过去 30 天)
显示 更早的评论
Type the following:
h = uicontrol('callback','disp(pi)');
[SL: fixed typo in callback; the closing ) had been omitted.]
Note that when you click on the button created "3.1416" is displayed as expected. Now type:
inspect(h);
With older versions of Matlab, I could inspect the properties I was interested in, close the inspect window and continue using my program. (In this case it will continue to display pi when I click on the button). However I tried this recently on a system with a newer version of Matlab (R2021b) and after closing the property inspector, the button would not execute the callback. (It was trying to move the button instead). I tried typeing "inspect -close" but this seemed to have no effect.
Evidently once the property inspector sinks its teeth into a program it won't let go. The only way I could proceed is to close the program and restart it, which can be quite inconvenient at times. This seems to make the property inspector much less useful.
Is there a way to restore functionality to the control callbacks after using the property inspector?
0 个评论
采纳的回答
Steven Lord
2023-1-5
When you open Property Inspector it enables plot editing mode. [Note that the arrow icon in the toolbar has been selected after you call inspect.] With plot editing mode on, clicking on objects like a uicontrol selects it and allows you to manipulate (move, in particular) the object.
plotedit off
2 个评论
Steven Lord
2023-1-5
The easiest way to ensure that this feedback gets to the documentation staff responsible for that page is to give the page a star rating (the prompt "How useful was this information?" appears at the end of every or almost every documentation page) and then provide text feedback (the prompt changes to "Why did you choose this rating?" with a text box.)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!