gtkBoxPackEnd             package:RGtk2             R Documentation

_g_t_k_B_o_x_P_a_c_k_E_n_d

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

     Adds 'child' to 'box', packed with reference to the end of 'box'. 
      The 'child' is packed after (away from end of) any other child 
     packed with reference to the end of 'box'.

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

     gtkBoxPackEnd(object, child, expand = TRUE, fill = TRUE, padding = 0)

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

'object': ['GtkBox']  a 'GtkBox'

 'child': ['GtkWidget']  the 'GtkWidget' to be added to 'box'

'expand': [logical] 'TRUE' if the new child is to be given extra space
          allocated  to 'box'. The extra space will be divided evenly
          between all children  of 'box' that use this option

  'fill': [logical] 'TRUE' if space given to 'child' by the 'expand'
          option is actually allocated to 'child', rather than just
          padding it.  This parameter has no effect if 'expand' is set
          to 'FALSE'.  A child is always allocated the full height of a
          'GtkHBox' and the full width  of a 'GtkVBox'.  This option
          affects the other dimension

'padding': [numeric]  extra space in pixels to put between this child
          and its neighbors, over and above the global amount specified
          by '"spacing"' property.  If 'child' is a widget at one of
          the  reference ends of 'box', then 'padding' pixels are also
          put between  'child' and the reference edge of 'box'

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

     Derived by RGtkGen from GTK+ documentation

