Table.this

Used to create a new table widget. An initial size must be given by specifying how many rows and columns the table should have, although this can be changed later with gtk_table_resize(). rows and columns must both be in the range 0 .. 65535.

  1. this(GtkTable* gtkTable, bool ownedRef)
  2. this(uint rows, uint columns, int homogeneous)
    class Table
    this
    (
    uint rows
    ,
    uint columns
    ,)

Parameters

rows uint

The number of rows the new table should have.

columns uint

The number of columns the new table should have.

homogeneous int

If set to TRUE, all table cells are resized to the size of the cell containing the largest widget.

Throws

ConstructionException GTK+ fails to create the object.

Meta