Windows size for Input in dialog box
Show older comments
I'm using the below code:
prompt = {'Reporting year:','Aircraft operator:','Unique identifier:','Aircraft code:','Member State:','Competent authority:','AOC number:','AOC authority:','Operating Licence:','Issuing authority:'};
dlg_title = 'General Information ';
num_lines = 1;
answer = inputdlg(prompt,dlg_title,num_lines);
The problem that the windows size is too small and is cutting part of the title. Is it possible to increase the size?
Accepted Answer
More Answers (1)
Robert Cumming
on 22 Dec 2011
0 votes
Its quite easy to make a copy of the inputdlg m code, the FigWidth variable is hardcoded - so either override the hardcoded value or add an extra optional input (e.g. options.Width)
Categories
Find more on MATLAB Report Generator 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!