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.Table.resize. rows and columns must both be in the range 1 .. 65535. For historical reasons, 0 is accepted as well and is silently interpreted as 1.

More...
  1. this(void* ptr, Flag!"Take" take)
  2. this(uint rows, uint columns, bool 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 bool

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

Return Value

A pointer to the newly created table widget.

Detailed Description

Deprecated: Use gtk.grid.Grid.new_.