<< commandhistory | Gui module | filebrowser >> |
h = errordlg() |
h = errordlg(text_error) |
h = errordlg(text_error, title) |
h = errordlg(text_error, title, mode) |
a string or a cell of string: the error message.
a string: the title of the dialog box.
a string: 'mode', 'non-modal', 'replace'.
a QObject handle.
errordlg creates an error dialog box.
h = errordlg(text_error, title, 'replace') specifies whether to replace an existing dialog box having the same title.
h = errordlg()
h = errordlg('error string')
h = errordlg('error string', 'dialog title')
h = errordlg('error string', 'dialog title')
h = errordlg('error string', 'dialog title', 'on')
warndlg, questdlg, helpdlg, msgbox.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET