gtkTableAttach             package:RGtk2             R Documentation

_g_t_k_T_a_b_l_e_A_t_t_a_c_h

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

     Adds a widget to a table. The number of 'cells' that a widget will
     occupy is specified by 'left.attach', 'right.attach', 'top.attach'
     and 'bottom.attach'. These each represent the leftmost, rightmost,
     uppermost and lowest column and row numbers of the table. (Columns
     and rows are indexed from zero).

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

     gtkTableAttach(object, child, left.attach, right.attach, top.attach, bottom.attach, xoptions = 5, yoptions = 5, xpadding = 0, ypadding = 0)

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

'object': ['GtkTable'] The 'GtkTable' to add a new widget to.

 'child': ['GtkWidget'] The widget to add.

'left.attach': [numeric] the column number to attach the left side of a
          child widget to.

'right.attach': [numeric] the column number to attach the right side of
          a child widget to.

'top.attach': [numeric] the row number to attach the top of a child
          widget to.

'bottom.attach': [numeric] the row number to attach the bottom of a
          child widget to.

'xoptions': ['GtkAttachOptions'] Used to specify the properties of the
          child widget when the table is resized.

'yoptions': ['GtkAttachOptions'] The same as xoptions, except this
          field determines behaviour of vertical resizing.

'xpadding': [numeric] An integer value specifying the padding on the
          left and right of the widget being added to the table.

'ypadding': [numeric] The amount of padding above and below the child
          widget.

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

     Derived by RGtkGen from GTK+ documentation

