gtkTreeViewSetCursorOnCell       package:RGtk2       R Documentation

_g_t_k_T_r_e_e_V_i_e_w_S_e_t_C_u_r_s_o_r_O_n_C_e_l_l

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

     Sets the current keyboard focus to be at 'path', and selects it. 
     This is useful when you want to focus the user's attention on a
     particular row.  If 'focus.column' is not 'NULL', then focus is
     given to the column specified by it. If 'focus.column' and
     'focus.cell' are not 'NULL', and 'focus.column' contains 2 or more
     editable or activatable cells, then focus is given to the cell
     specified by 'focus.cell'. Additionally, if 'focus.column' is
     specified, and 'start.editing' is 'TRUE', then editing should be
     started in the specified cell.  This function is often followed by
     'gtk.widget.grab.focus' ('tree.view') in order to give keyboard
     focus to the widget.  Please note that editing can only happen
     when the widget is realized.

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

     gtkTreeViewSetCursorOnCell(object, path, focus.column = NULL, focus.cell = NULL, start.editing = FALSE)

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

'object': ['GtkTreeView']  A 'GtkTreeView'

  'path': ['GtkTreePath']  A 'GtkTreePath'

'focus.column': ['GtkTreeViewColumn']  A 'GtkTreeViewColumn', or 'NULL'

'focus.cell': ['GtkCellRenderer']  A 'GtkCellRenderer', or 'NULL'

'start.editing': [logical] 'TRUE' if the specified cell should start
          being edited.

_D_e_t_a_i_l_s:

     Since  2.2

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

     Derived by RGtkGen from GTK+ documentation

