editDetails               package:grid               R Documentation

_C_u_s_t_o_m_i_s_i_n_g _g_r_i_d _E_d_i_t_i_n_g

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

     This generic hook function is called whenever a grid grob is
     edited via 'grid.edit' or 'editGrob'. This provides an opportunity
     for customising the editing of a new class derived from grob (or
     gTree).

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

     editDetails(x, specs)

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

       x: A grid grob. 

   specs: A list of named elements.  The names indicate the grob slots
          to modify and the values are the new values for the slots. 

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

     This function is called by 'grid.edit' and 'editGrob'. A method
     should be written for classes derived from grob or gTree if a
     change in a slot has an effect on other slots in the grob or
     children of a gTree (e.g., see 'grid:::editDetails.xaxis').

     Note that the slot already has the new value.

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

     The function MUST return the modified grob.

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

     Paul Murrell

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

     'grid.edit'

