tk2dialogs {tcltk2} | R Documentation |
Tk dialog boxes to select a font, a R color, etc.
tk2chooseFont(...)
... |
further arguments passed to the dialog box. |
The selection made in the dialog box if OK
is clicked, ""
otherwise.
If you use tile 0.7.2 or above, these dialog boxes will automatically use it. Otherwise, the dialog boxes will use plain Tk widgets
Philippe Grosjean
## Not run: ## These cannot be run by examples() but should be OK when pasted ## into an interactive R session with the tcltk package loaded tk2chooseFont() tk2chooseFont(font = "{courier} 9", title = "Choose a fixed font", fonttype = "fixed", style = 4, sizetype = "all") tk2chooseFont(font = "Verdana 12 bold italic underline overstrike", fonttype = "prop", style = 2, sizetype = "point") ## End(Not run)