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)
| Paramètre | Description |
|---|---|
| message | a string or a cell of string: the message to display. |
| title | a string : titre de la boîte de dialogue. |
| icon | a string: 'none', 'error', 'help', 'warn' or 'question'. |
| mode | a string: 'modal', 'on' or 'nonmodal'. |
| Paramètre | Description |
|---|---|
| h | a QObject handle. |
msgbox creates an message dialog box.
msgbox crée une boîte de dialogue de message.
h = msgbox(message, title, 'on') indique si une boîte de dialogue existante portant le même nom doit être remplacée.
h = msgbox('help string')
h = msgbox('help string', 'dialog title')
h = msgbox('help string', 'dialog title')
h = msgbox('help string', 'dialog title', 'on')
| Version | Description |
|---|---|
| 1.0.0 | version initiale |