octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

figure behavior


From: Rik
Subject: figure behavior
Date: Wed, 31 Jul 2013 19:15:58 -0700

7/31/13

Can someone run a test in Matlab for me?  According to the documentation
"figure (n)" should switch the current figure to n, make the figure
visible, and pop it to the front of the stack.  I want to see what they
mean by visible.

Test code
---------

hf = figure ('visible', 'off')
%% figure should not be visible
figure (hf)
%% What happens?  Is the figure now visible?
get (hf, 'visible')

hf = figure ('visible', 'off', 'handlevisibility', 'off')
%% figure should not be visible
figure (hf)
%% What happens?  Is the figure now visible?
get (hf, 'visible')
get (hf, 'handlevisibility')


Thanks,
Rik



reply via email to

[Prev in Thread] Current Thread [Next in Thread]