guiDlgMessage {svDialogs} | R Documentation |
~~ A concise (1-5 lines) description of what the function does. ~~
guiDlgMessage(message, title = "Message", type = c("ok", "okcancel", "yesno", "yesnocancel"), default = 1, icon = c("info", "question", "error", "warning"), parent = 0, GUI = getOption("guiWwidgets"))
message |
the message to display in the dialog box |
title |
the title of the dialog box |
type |
the type of dialog box: ok, okcancel, yesno or yesnocancel |
default |
the default button (if more than one) |
icon |
the icon: info, question, error or warning |
parent |
the parent of this dialog box (not implemented yet) |
GUI |
which GUI widgets do you want to use (tcltk, wxPython, ...) |
A string with the caption of the button that the user pressed.
Philippe Grosjean (phgrosjean@sciviews.org)
#### TO DO...