gseparator             package:gWidgets             R Documentation

_W_i_d_g_e_t _t_o _d_r_a_w _s_e_p_a_r_a_t_o_r _l_i_n_e

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

     Simple widget to draw a line used  clarify layout of widgets.

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

     gseparator(horizontal = TRUE, container = NULL, ..., toolkit = guiToolkit())

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

horizontal: If 'TRUE' line is horizontal, otherwise vertical.

container: Optional container to attach widget to

     ...: Ignored 

 toolkit: Which GUI toolkit to use

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

     ## Not run: 
       group = ggroup(container=TRUE)
       add(group, glabel("left widget"))
       add(group, gseparator(horizontal=FALSE))
       add(group, glabel("right widget"))
     ## End(Not run)

