dlg_open.tcltkGUI {svDialogstcltk} | R Documentation |
A Tcl/Tk version of the svDialogs file open dialog box
Description
A Tcl/Tk version of the svDialogs file open dialog box
Usage
## S3 method for class 'tcltkGUI'
dlg_open(
default = "",
title = if (multiple) "Select files" else "Select file",
multiple = FALSE,
filters = dlg_filters["All", ],
...,
gui = .GUI
)
Arguments
default |
The default file to start with (use |
title |
A title to display on top of the dialog box. |
multiple |
Is a multiple selection of files allowed? |
filters |
A specification of file filters as a |
... |
Not used yet. |
gui |
The 'gui' object concerned by this dialog box. |
Value
The path to the file to open.
See Also
Examples
library(svDialogstcltk) # Tcl/Tk dialog boxes are now used by default
## Not run:
# Choose one R file
dlg_open(title = "Select one R file", filters = dlg_filters[c("R", "All"), ])$res
# Choose several files
dlg_open(multiple = TRUE)$res
## End(Not run)
[Package svDialogstcltk version 1.0.0 Index]