Table.this
this
(void * ptr, Flag!"Take" take)No documentation available for this declaration.
this
(uint rows, uint columns, bool homogeneous)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.
Parameters
rows | The number of rows the new table should have. |
columns | The number of columns the new table should have. |
homogeneous | If set to true, all table cells are resized to the size of the cell containing the largest widget. |
Returns
A pointer to the newly created table widget.
Deprecated
Use gtk.grid.Grid.new_.