Method
GtkGridattach
Declaration [src]
void
gtk_grid_attach (
  GtkGrid* grid,
  GtkWidget* child,
  int column,
  int row,
  int width,
  int height
)
Description [src]
Adds a widget to the grid.
The position of child is determined by column and row.
The number of “cells” that child will occupy is determined by width and height.
Parameters
- child
- 
            Type: GtkWidgetThe widget to add. The data is owned by the caller of the method. 
- column
- 
            Type: intThe column number to attach the left side of childto.
- row
- 
            Type: intThe row number to attach the top side of childto.
- width
- 
            Type: intThe number of columns that childwill span.
- height
- 
            Type: intThe number of rows that childwill span.