setIdentifyMode            package:iSPlot            R Documentation

_S_e_t _t_h_e _v_i_e_w _m_o_d_e

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

     setIdentifyMode, setHighlightMode, setColorMode, and setHideMode
     set the  view mode to identify, highlight, color, and hide,
     respectively.  The  variable viewMode is stored in the
     environment, controlEnv, and it tells  the views how they should
     respond to user interaction.  setColorMode  also opens a color
     selection dialog window if one is not already open.

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

     setIdentifyMode()
     setHighlightMode()
     setColorMode()
     setHideMode()

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

     Elizabeth Whalen

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

     'setViewMode'

_E_x_a_m_p_l_e_s:

       if (interactive())
       {
         createControlWindow()
         # these will be set by choosing an item under the ViewMode menu
         setColorMode()
         get("viewMode",controlEnv)
         setHighlightMode()
         get("viewMode",controlEnv)
         setIdentifyMode()
         get("viewMode",controlEnv)
         setHideMode()
         get("viewMode",controlEnv)
       }

