guiDlgSave             package:svDialogs             R Documentation

_a _s_a_v_e _t_o _f_i_l_e _d_i_a_l_o_g _b_o_x

_D_e_s_c_r_i_p_t_i_o_n:

     Use this dialog box to ask a name for saving a file

_U_s_a_g_e:

     guiDlgSave(title = "Save As", defaultFile = "", defaultDir = "", defaultExt = "", filters = c("All files (*.*)", "*.*"), parent = 0, GUI = getOption("guiWidgets"))

_A_r_g_u_m_e_n_t_s:

   title: the title of the dialog box 

defaultFile: the default file name 

defaultDir: the default directory where to open this dialog box 

defaultExt: the default extension for the file 

 filters: the filters to use. It is a n*2 matrix of characters, with
          first column being the label and the second being the mask.
          For instance: "Text files", "*.txt". 

  parent: the parent of this dialog box (not implemented yet) 

     GUI: which GUI widgets do you want to use (tcltk, wxPython, ...) 

_V_a_l_u_e:

     The path to the file where to save data.

_A_u_t_h_o_r(_s):

     Philippe Grosjean (phgrosjean@sciviews.org)

_S_e_e _A_l_s_o:

     'guiDlgOpen'

_E_x_a_m_p_l_e_s:

         #### TO DO...

