objViewer             package:tkWidgets             R Documentation

_S_h_o_w _t_h_e _C_o_n_t_e_n_t _o_f _a_n _R _O_b_j_e_c_t _i_n _a _W_i_d_g_e_t

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

     This function takes an R object and shows the content in a list
     box on a widget.

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

     objViewer(toView, width = 40, height = 10)

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

  toView: R object whose content is to be viewed

width, height: positive values specifying the width and height of the
          widget.

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

     The function makes no check of the R object passed and will show
     whatever the object will be shown when the name is type at an R
     prompt.  Formatting is required before passing the R object to the
     function.

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

     This function does not return any value

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

     Jianhua Zhang

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

     'listSelect'

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

     # Since user interference is required, the example code only runs
     # interactively
     if(interactive())
        objViewer("Just to show that the content gets posted")

