MATLAB: Multiple lines in msgbox

guimsgbox

How can i write multiple lines in msgbox ?
here it is just write in 2 lines ! .. but i need more than 2 lines : (
uiwait(msgbox({'line1';'line2' } ,'About !','modal'));

Best Answer

uiwait(msgbox({'line1';'line2';'line3';'line4' } ,'About !','modal'));