grid.display.list package:grid R Documentation _C_o_n_t_r_o_l _t_h_e _G_r_i_d _D_i_s_p_l_a_y _L_i_s_t _D_e_s_c_r_i_p_t_i_o_n: Turn the Grid display list on or off. _U_s_a_g_e: grid.display.list(on=TRUE) engine.display.list(on=TRUE) _A_r_g_u_m_e_n_t_s: on: A logical value to indicate whether the display list should be on or off. _D_e_t_a_i_l_s: All drawing and viewport-setting operations are (by default) recorded in the Grid display list. This allows redrawing to occur following an editing operation. This display list could get very large so it may be useful to turn it off in some cases; this will of course disable redrawing. All graphics output is also recorded on the main display list of the R graphics engine (by default). This supports redrawing following a device resize and allows copying between devices. Turning off this display list means that grid will redraw from its own display list for device resizes and copies. This will be slower than using the graphics engine display list. _V_a_l_u_e: None. _W_A_R_N_I_N_G: Turning the display list on causes the display list to be erased! Turning off both the grid display list and the graphics engine display list will result in no redrawing whatsoever. _A_u_t_h_o_r(_s): Paul Murrell