Grid.attach

void attach(gtk.widget.Widget child, int column, int row, int width, int height)

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

childthe widget to add
columnthe column number to attach the left side of child to
rowthe row number to attach the top side of child to
widththe number of columns that child will span
heightthe number of rows that child will span