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'