Write on next line whilst constructing questdlg
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hey guys,
I'm constructing a question dialog box which has quite a lot of writing in it. Is there a way of writing the rest of the text on the next line of the script file? I've tried using ellipses and it's not working.
On a side note, is it possible to format questdlg so that you can split the dialog text into separate paragraphs?
Cheers,
Louis Vallance
0 comentarios
Respuesta aceptada
Jan
el 16 de En. de 2013
Editada: Jan
el 18 de En. de 2013
QUESTDLG wraps the text automatically at a certain width. Several paragraphs can be obtained by using a cell string, perhaps with an empty string as separator:
Str = ['asdhgaiosdzgoaszdlbas l lashb kjha sd,man bsdljhakshdg v ', ...
'öaiosuh asödh ljhansbd kjash dbkashdg'];
questdlg(Str);
questdlg({Str, '', Str})
Look at the doc textwrap command also.
[EDITED, Jan, typo fixed: quote character inserted]
2 comentarios
Jan
el 18 de En. de 2013
Yes, Louis, I forgot a quote character. Could you be able to fix this by your own?
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!