ghelp                package:gWidgets                R Documentation

_W_i_d_g_e_t _t_o _i_n_t_e_r_f_a_c_e _w_i_t_h _h_e_l_p _p_a_g_e_s

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

     A widget to interface with the help pages and that widget placed
     in a browser. The widget is a notebook capable of showing several
     pages at once.

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

     ghelp(topic = NULL, package = NULL, container = NULL, ..., toolkit = guiToolkit())
     ghelpbrowser(title = "Help browser", maxTerms=100, width=550, height=600, toolkit = guiToolkit()) 

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

   topic: Help topic

 package: Which package to look for topic in

container: Optional container to attach widget to

   title: Title of help browser

maxTerms: Maximum number of search responses

   width: Width of browser window in pixels

  height: Height  of browser window in pixels

     ...: Ignored

 toolkit: Which GUI toolkit to use

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

     Finding the help page can be a little slow.

     The 'add(obj,value)' method can be used to add a new page. The
     page may be specified as a list with components 'topic' and
     'package', as a string in the form 'package:::topic', or a string
     of the form 'topic'.

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

     ## Not run: 
       obj = ghelp(container=TRUE)
       add(obj,"base:::mean")

     ## End(Not run)

