How to move or relocate the figure window and message box?
Show older comments
Hi,
I have 3 windows
1) Area Information
2) figure 1 with histogram information
3) Input Dialogbox
Here is the snapshot of that. My trouble is that, I couldn't able to move the 1 and 2 windows. I could able to move only window 3.
This is the code I used:
%code for Window1
regionData=regionprops(imageThresh,'basic');
minArea=min([regionData.Area]);
maxArea=max([regionData.Area]);
message=sprintf('Minimum Area = %d \n\nMaximum Area = %d',minArea,maxArea);
h=msgbox(message, 'Area Information' );
set(h,'Position',[350 499 150 70])
% code for window2
figure('name',sprintf('Histogram Information - %s',baseFileName),'NumberTitle','off');
hist([regionData.Area],20);
%code for window 3
prompt = {'Enter Minimum pixel area(default value is 2) - ',...
'Enter Maximum pixel area(default value is 100) -'};
dlg_title = 'Max/Min Pixel Area Selection';
num_lines = 1;
def = {'2','100'};
options.Resize='on';
answer=inputdlg(prompt,dlg_title,num_lines,def,options);
close;

Is there any method such that I can move all the 3 windows. I means to relocate the windows on the screen using the mouse cursor.
Thanks in advance.
Accepted Answer
More Answers (0)
Categories
Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!