gtkGetText               package:RGtk2               R Documentation

_A_c_c_e_s_s _c_o_n_t_e_n_t_s _o_f _G_t_k _t_e_x_t _w_i_d_g_e_t

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

     *DEPRECATED!! (compatibility wrappers for RGtk 1!)* 

     These functions allow one to retrieve or set the contents of a Gtk
     text widget.

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

     gtkTextSetText(w, contents="", append = FALSE)
     gtkTextGetText(w)
     gtkTextClearText(w, start=0, end=-1)

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

       w: the GtkTextWidget whose contents are to be accessed

contents: a character vector (of length 1) giving the  contents to be
          either appended or inserted into the text widget.

  append: a logical value indicating whether the new text is to be
          appended to the existing contents or  used to replace it. If
          this is 'FALSE', the text widget is currently cleared first.

   start: locations in the text widget where the  to start clearing the
          text. These are essentially character offsets into the string
          at present.

     end: locations in the text widget where the  to complete clearing
          the text. These are essentially character offsets into the
          string at present.

_N_o_t_e:

     THIS STUFF IS VERY OLD AND DEPRECATED (compatibility wrappers for
     RGtk 1)

     This is an extra-ordinarily early release  intended to encourage
     others to contribute code, etc.

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

     Duncan Temple Lang

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.gtk.org> <URL: http://www.omegahat.org/RGtk>

