<< lookandfeel | Gui module | qt_verbose >> |
h = msgbox(message) |
h = msgbox(message, mode) |
h = msgbox(message, title) |
h = msgbox(message, title, mode) |
h = msgbox(message, title, icon) |
h = msgbox(message, title, icon, mode) |
a string or a cell of string: the message to display.
a string: the title of the dialog box.
a string: 'none', 'error', 'help', 'warn' or 'question'.
a string: 'modal', 'on' or 'nonmodal'.
a QObject handle.
msgbox creates an message dialog box.
h = msgbox(message, title, 'on') specifies whether to replace an existing dialog box having the same name.
h = msgbox('help string')
h = msgbox('help string', 'dialog title')
h = msgbox('help string', 'dialog title')
h = msgbox('help string', 'dialog title', 'on')
helpdlg, errordlg, questdlg, warndlg.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET